mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
Merge branch 'tempv0.130.0'
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Acos
|
||||
description: Returns the arccosine, in radians, of the given number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Asin
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
returnType: float64
|
||||
signatures: [math.Acos VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Acos 1 }} → 0
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Asin
|
||||
description: Returns the arcsine, in radians, of the given number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Acos
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
returnType: float64
|
||||
signatures: [math.Asin VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Asin 1 }} → 1.5707963267948966
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Atan
|
||||
description: Returns the arctangent, in radians, of the given number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Atan2
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
returnType: float64
|
||||
signatures: [math.Atan VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Atan 1 }} → 0.7853981633974483
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Atan2
|
||||
description: Returns the arctangent, in radians, of the given number pair, determining the correct quadrant from their signs.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Atan
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
returnType: float64
|
||||
signatures: [math.Atan2 VALUE VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Atan2 1 2 }} → 0.4636476090008061
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Cos
|
||||
description: Returns the cosine of the given radian number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Tan
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
returnType: float64
|
||||
signatures: [math.Cos VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Cos 1 }} → 0.5403023058681398
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Pi
|
||||
description: Returns the mathematical constant pi.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
returnType: float64
|
||||
signatures: [math.Pi]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Pi }} → 3.141592653589793
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Sin
|
||||
description: Returns the sine of the given radian number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Pi
|
||||
- functions/math/Cos
|
||||
- functions/math/Tan
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
returnType: float64
|
||||
signatures: [math.Sin VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Sin 1 }} → 0.8414709848078965
|
||||
```
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: math.Tan
|
||||
description: Returns the tangent of the given radian number.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/Pi
|
||||
- functions/math/Sin
|
||||
- functions/math/Cos
|
||||
- functions/math/Asin
|
||||
- functions/math/Acos
|
||||
- functions/math/Atan
|
||||
- functions/math/Atan2
|
||||
returnType: float64
|
||||
signatures: [math.Tan VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.Tan 1 }} → 1.557407724654902
|
||||
```
|
||||
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: math.ToDegrees
|
||||
description: ToDegrees converts radians into degrees.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/ToRadians
|
||||
- functions/math/Pi
|
||||
returnType: float64
|
||||
signatures: [math.ToDegrees VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.ToDegrees 1.5707963267948966 }} → 90
|
||||
```
|
||||
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: math.ToRadians
|
||||
description: ToRadians converts degrees into radians.
|
||||
categories: []
|
||||
keywords: []
|
||||
action:
|
||||
aliases: []
|
||||
related:
|
||||
- functions/math/ToDegrees
|
||||
- functions/math/Pi
|
||||
returnType: float64
|
||||
signatures: [math.ToRadians VALUE]
|
||||
---
|
||||
|
||||
{{< new-in 0.130.0 >}}
|
||||
|
||||
```go-html-template
|
||||
{{ math.ToRadians 90 }} → 1.5707963267948966
|
||||
```
|
||||
+105
-8
@@ -1336,6 +1336,7 @@ config:
|
||||
minifyOutput: false
|
||||
tdewolff:
|
||||
css:
|
||||
inline: false
|
||||
keepCSS2: true
|
||||
precision: 0
|
||||
html:
|
||||
@@ -1358,6 +1359,7 @@ config:
|
||||
keepNumbers: false
|
||||
precision: 0
|
||||
svg:
|
||||
inline: false
|
||||
keepComments: false
|
||||
precision: 0
|
||||
xml:
|
||||
@@ -1672,6 +1674,7 @@ config:
|
||||
allow:
|
||||
- ^(dart-)?sass(-embedded)?$
|
||||
- ^go$
|
||||
- ^git$
|
||||
- ^npx$
|
||||
- ^postcss$
|
||||
- ^tailwindcss$
|
||||
@@ -2757,14 +2760,9 @@ tpl:
|
||||
crypto:
|
||||
FNV32a:
|
||||
Aliases: null
|
||||
Args:
|
||||
- v
|
||||
Description: |-
|
||||
FNV32a hashes v using fnv32a algorithm.
|
||||
<docsmeta>{"newIn": "0.98.0" }</docsmeta>
|
||||
Examples:
|
||||
- - '{{ crypto.FNV32a "Hugo Rocks!!" }}'
|
||||
- "1515779328"
|
||||
Args: null
|
||||
Description: ""
|
||||
Examples: null
|
||||
HMAC:
|
||||
Aliases:
|
||||
- hmac
|
||||
@@ -3051,6 +3049,24 @@ tpl:
|
||||
Args: null
|
||||
Description: ""
|
||||
Examples: null
|
||||
hash:
|
||||
FNV32a:
|
||||
Aliases: null
|
||||
Args:
|
||||
- v
|
||||
Description: FNV32a hashes v using fnv32a algorithm.
|
||||
Examples:
|
||||
- - '{{ hash.FNV32a "Hugo Rocks!!" }}'
|
||||
- "1515779328"
|
||||
XxHash:
|
||||
Aliases:
|
||||
- xxhash
|
||||
Args:
|
||||
- v
|
||||
Description: XxHash returns the xxHash of the input string.
|
||||
Examples:
|
||||
- - '{{ hash.XxHash "The quick brown fox jumps over the lazy dog" }}'
|
||||
- 0b242d361fda71bc
|
||||
hugo:
|
||||
Deps:
|
||||
Aliases: null
|
||||
@@ -3386,6 +3402,14 @@ tpl:
|
||||
Examples:
|
||||
- - '{{ math.Abs -2.1 }}'
|
||||
- "2.1"
|
||||
Acos:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Acos returns the arccosine, in radians, of n.
|
||||
Examples:
|
||||
- - '{{ math.Acos 1 }}'
|
||||
- "0"
|
||||
Add:
|
||||
Aliases:
|
||||
- add
|
||||
@@ -3395,6 +3419,32 @@ tpl:
|
||||
Examples:
|
||||
- - '{{ add 1 2 }}'
|
||||
- "3"
|
||||
Asin:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Asin returns the arcsine, in radians, of n.
|
||||
Examples:
|
||||
- - '{{ math.Asin 1 }}'
|
||||
- "1.5707963267948966"
|
||||
Atan:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Atan returns the arctangent, in radians, of n.
|
||||
Examples:
|
||||
- - '{{ math.Atan 1 }}'
|
||||
- "0.7853981633974483"
|
||||
Atan2:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
- m
|
||||
Description: Atan2 returns the arc tangent of n/m, using the signs of the
|
||||
two to determine the quadrant of the return value.
|
||||
Examples:
|
||||
- - '{{ math.Atan2 1 2 }}'
|
||||
- "0.4636476090008061"
|
||||
Ceil:
|
||||
Aliases: null
|
||||
Args:
|
||||
@@ -3404,6 +3454,14 @@ tpl:
|
||||
Examples:
|
||||
- - '{{ math.Ceil 2.1 }}'
|
||||
- "3"
|
||||
Cos:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Cos returns the cosine of the radian argument n.
|
||||
Examples:
|
||||
- - '{{ math.Cos 1 }}'
|
||||
- "0.5403023058681398"
|
||||
Counter:
|
||||
Aliases: null
|
||||
Args: null
|
||||
@@ -3483,6 +3541,13 @@ tpl:
|
||||
Examples:
|
||||
- - '{{ mul 2 3 }}'
|
||||
- "6"
|
||||
Pi:
|
||||
Aliases: null
|
||||
Args: null
|
||||
Description: Pi returns the mathematical constant pi.
|
||||
Examples:
|
||||
- - '{{ math.Pi }}'
|
||||
- "3.141592653589793"
|
||||
Pow:
|
||||
Aliases:
|
||||
- pow
|
||||
@@ -3515,6 +3580,14 @@ tpl:
|
||||
Examples:
|
||||
- - '{{ math.Round 1.5 }}'
|
||||
- "2"
|
||||
Sin:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Sin returns the sine of the radian argument n.
|
||||
Examples:
|
||||
- - '{{ math.Sin 1 }}'
|
||||
- "0.8414709848078965"
|
||||
Sqrt:
|
||||
Aliases: null
|
||||
Args:
|
||||
@@ -3537,6 +3610,30 @@ tpl:
|
||||
Args: null
|
||||
Description: ""
|
||||
Examples: null
|
||||
Tan:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: Tan returns the tangent of the radian argument n.
|
||||
Examples:
|
||||
- - '{{ math.Tan 1 }}'
|
||||
- "1.557407724654902"
|
||||
ToDegrees:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: ToDegrees converts radians into degrees.
|
||||
Examples:
|
||||
- - '{{ math.ToDegrees 1.5707963267948966 }}'
|
||||
- "90"
|
||||
ToRadians:
|
||||
Aliases: null
|
||||
Args:
|
||||
- "n"
|
||||
Description: ToRadians converts degrees into radians.
|
||||
Examples:
|
||||
- - '{{ math.ToRadians 90 }}'
|
||||
- "1.5707963267948966"
|
||||
openapi3:
|
||||
Unmarshal:
|
||||
Aliases: null
|
||||
|
||||
Reference in New Issue
Block a user