From fcc3ed651a1b6431303c2f88f20fa38531c52b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 8 Aug 2024 11:42:18 +0200 Subject: [PATCH] Remove some expired new-in --- content/en/content-management/syntax-highlighting.md | 2 +- content/en/functions/hugo/GoVersion.md | 2 -- content/en/functions/path/BaseName.md | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/content/en/content-management/syntax-highlighting.md b/content/en/content-management/syntax-highlighting.md index 070279c4cc..bdc81536ac 100644 --- a/content/en/content-management/syntax-highlighting.md +++ b/content/en/content-management/syntax-highlighting.md @@ -41,7 +41,7 @@ Options: * `linenostart=199`: starts the line number count from 199. * `anchorlinenos`: Configure anchors on line numbers. Valid values are `true` or `false`; * `lineanchors`: Configure a prefix for the anchors on line numbers. Will be suffixed with `-`, so linking to the line number 1 with the option `lineanchors=prefix` adds the anchor `prefix-1` to the page. -* `hl_inline` Highlight inside a `` (inline HTML element) tag. Valid values are `true` or `false`. The `code` tag will get a class with name `code-inline`. {{< new-in 0.101.0 >}} +* `hl_inline` Highlight inside a `` (inline HTML element) tag. Valid values are `true` or `false`. The `code` tag will get a class with name `code-inline`. ### Example: highlight shortcode diff --git a/content/en/functions/hugo/GoVersion.md b/content/en/functions/hugo/GoVersion.md index 1640c3862e..34c6266bf4 100644 --- a/content/en/functions/hugo/GoVersion.md +++ b/content/en/functions/hugo/GoVersion.md @@ -10,8 +10,6 @@ action: signatures: [hugo.GoVersion] --- -{{< new-in 0.101.0 >}} - ```go-html-template {{ hugo.GoVersion }} → go1.21.1 ``` diff --git a/content/en/functions/path/BaseName.md b/content/en/functions/path/BaseName.md index 4c4340a097..477c8d3196 100644 --- a/content/en/functions/path/BaseName.md +++ b/content/en/functions/path/BaseName.md @@ -17,8 +17,6 @@ action: aliases: [/functions/path.basename] --- -{{< new-in 0.101.0 >}} - ```go-html-template {{ path.BaseName "a/news.html" }} → news {{ path.BaseName "news.html" }} → news