From 328fe564e180ae67446e6b98de84559330a6ae1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Fri, 2 Aug 2024 10:57:10 +0200 Subject: [PATCH] Remove some outdated new-in --- content/en/functions/resources/Copy.md | 2 -- content/en/hugo-pipes/postcss.md | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/content/en/functions/resources/Copy.md b/content/en/functions/resources/Copy.md index e25f91313..3be3dfd57 100644 --- a/content/en/functions/resources/Copy.md +++ b/content/en/functions/resources/Copy.md @@ -9,8 +9,6 @@ action: signatures: [resources.Copy TARGETPATH RESOURCE] --- -{{< new-in 0.100.0 >}} - ```go-html-template {{ with resources.Get "images/a.jpg" }} {{ with resources.Copy "img/new-image-name.jpg" . }} diff --git a/content/en/hugo-pipes/postcss.md b/content/en/hugo-pipes/postcss.md index 9d3146c43..8ca983f7e 100755 --- a/content/en/hugo-pipes/postcss.md +++ b/content/en/hugo-pipes/postcss.md @@ -82,8 +82,8 @@ URL imports (e.g. `@import url('https://fonts.googleapis.com/css?family=Open+San Note that this import routine does not care about the CSS spec, so you can have @import anywhere in the file. Hugo will look for imports relative to the module mount and will respect theme overrides. -skipInlineImportsNotFound {{< new-in 0.99.0 >}} -: (`bool`) Default is `false`. Before Hugo 0.99.0 when `inlineImports` was enabled and we failed to resolve an import, we logged it as a warning. We now fail the build. If you have regular CSS imports in your CSS that you want to preserve, you can either use imports with URL or media queries (Hugo does not try to resolve those) or set `skipInlineImportsNotFound` to true. +skipInlineImportsNotFound +: (`bool`) Default is `false`. If you have regular CSS imports in your CSS that you want to preserve, you can either use imports with URL or media queries (Hugo does not try to resolve those) or set `skipInlineImportsNotFound` to true. {{< code file=layouts/partials/css.html >}} {{ $opts := dict "config" "config-directory" "noMap" true }}