Squashed 'docs/' changes from 159c843fd..227aab619

227aab619 Update configuration-markup.md
019ff776c Fix grammatical error
c889827bf Remove old new-in
39807c5bc Remove duplicate yaml key

git-subtree-dir: docs
git-subtree-split: 227aab61905c0f778d173ed9e38621df4d7c429a
This commit is contained in:
Bjørn Erik Pedersen 2024-11-18 10:11:17 +01:00
parent de0df119b5
commit 838bd312b1
7 changed files with 12 additions and 12 deletions

View file

@ -86,9 +86,9 @@ Type
Site Site
: (`page.Site`) The current site object. See [details](/methods/site/). : (`page.Site`) The current site object. See [details](/methods/site/).
## Alternate date format ## Date format
To insert date and time with an alternate format, use the [`time.Now`] function: To insert date and time with a different format, use the [`time.Now`] function:
[`time.Now`]: /functions/time/now/ [`time.Now`]: /functions/time/now/
@ -169,9 +169,9 @@ content/
└── _index.md └── _index.md
``` ```
## Use alternate archetype ## Specify archetype
Use the `--kind` command line flag to specify an alternate archetype when creating content. Use the `--kind` command line flag to specify an archetype when creating content.
For example, let's say your site has two sections: articles and tutorials. Create an archetype for each content type: For example, let's say your site has two sections: articles and tutorials. Create an archetype for each content type:

View file

@ -137,7 +137,7 @@ These are block equations:
a^*=x-b^* a^*=x-b^*
\] \]
These are block equations using alternate delimiters: These are also block equations:
$$a^*=x-b^*$$ $$a^*=x-b^*$$

View file

@ -15,7 +15,7 @@ action:
aliases: ['/functions/numfmt/'] aliases: ['/functions/numfmt/']
--- ---
This function formats a number with the given precision. The first options parameter is a space-delimited string of characters to represent negativity, the decimal point, and grouping. The default value is `- . ,`. The second options parameter defines an alternate delimiting character. This function formats a number with the given precision. The first options parameter is a space-delimited string of characters to represent negativity, the decimal point, and grouping. The default value is `- . ,`. The second options parameter defines an alternative delimiting character.
Note that numbers are rounded up at 5 or greater. So, with precision set to 0, 1.5 becomes 2, and 1.4 becomes 1. Note that numbers are rounded up at 5 or greater. So, with precision set to 0, 1.5 becomes 2, and 1.4 becomes 1.

View file

@ -21,7 +21,7 @@ Hugo uses [Goldmark] to render Markdown to HTML.
defaultMarkdownHandler = 'goldmark' defaultMarkdownHandler = 'goldmark'
{{< /code-toggle >}} {{< /code-toggle >}}
Files with the `.md` or `.markdown` extension are processed as Markdown, provided that you have not specified a different [content format] using the `markup` field in front matter. Files with a `.md`, `.mdown`, or `.markdown` extension are processed as Markdown, provided that you have not specified a different [content format] using the `markup` field in front matter.
To use a different renderer for Markdown files, specify one of `asciidocext`, `org`, `pandoc`, or `rst` in your site configuration. To use a different renderer for Markdown files, specify one of `asciidocext`, `org`, `pandoc`, or `rst` in your site configuration.
@ -36,7 +36,7 @@ defaultMarkdownHandler|Description
To use AsciiDoc, Pandoc, or reStructuredText you must install the relevant renderer and update your [security policy]. To use AsciiDoc, Pandoc, or reStructuredText you must install the relevant renderer and update your [security policy].
{{% note %}} {{% note %}}
Unless you need a unique capability provided by one of the alternate Markdown handlers, we strongly recommend that you use the default setting. Goldmark is fast, well maintained, conforms to the [CommonMark] specification, and is compatible with [GitHub Flavored Markdown] (GFM). Unless you need a unique capability provided by one of the alternative Markdown handlers, we strongly recommend that you use the default setting. Goldmark is fast, well maintained, conforms to the [CommonMark] specification, and is compatible with [GitHub Flavored Markdown] (GFM).
[commonmark]: https://spec.commonmark.org/0.30/ [commonmark]: https://spec.commonmark.org/0.30/
[github flavored markdown]: https://github.github.com/gfm/ [github flavored markdown]: https://github.github.com/gfm/

View file

@ -62,7 +62,7 @@ precision
enableSourceMap enableSourceMap
: (`bool`) If `true`, generates a source map. : (`bool`) If `true`, generates a source map.
sourceMapIncludeSources {{< new-in 0.108.0 >}} sourceMapIncludeSources
: (`bool`) If `true`, embeds sources in the generated source map. Not applicable to LibSass. : (`bool`) If `true`, embeds sources in the generated source map. Not applicable to LibSass.
includePaths includePaths

View file

@ -4,7 +4,6 @@ description: Returns the result of rounding DURATION1 toward zero to a multiple
categories: [] categories: []
keywords: [] keywords: []
action: action:
related:
related: related:
- functions/time/Duration - functions/time/Duration
- functions/time/ParseDuration - functions/time/ParseDuration

View file

@ -11,6 +11,7 @@ action:
- methods/shortcode/InnerDeindent - methods/shortcode/InnerDeindent
returnType: template.HTML returnType: template.HTML
signatures: [SHORTCODE.Inner] signatures: [SHORTCODE.Inner]
toc: true
--- ---
This content: This content:
@ -56,7 +57,7 @@ In the example above, the value returned by `Inner` is Markdown, but it was rend
{{% /note %}} {{% /note %}}
## Use the RenderString method ## Use RenderString
Let's modify the example above to pass the value returned by `Inner` through the [`RenderString`] method on the `Page` object: Let's modify the example above to pass the value returned by `Inner` through the [`RenderString`] method on the `Page` object:
@ -89,7 +90,7 @@ You can use the [`markdownify`] function instead of the `RenderString` method, b
[details]: /methods/page/renderstring/ [details]: /methods/page/renderstring/
[`markdownify`]: /functions/transform/markdownify/ [`markdownify`]: /functions/transform/markdownify/
## Use alternate notation ## Alternative notation
Instead of calling the shortcode with the `{{</* */>}}` notation, use the `{{%/* */%}}` notation: Instead of calling the shortcode with the `{{</* */>}}` notation, use the `{{%/* */%}}` notation: