From 6ddeab4f8017a5cc1294d5c10965955a6a972883 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Mon, 27 Mar 2023 10:18:04 -0700 Subject: [PATCH] Add missing go-html-template code fence type (#2030) --- content/en/functions/path.Base.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/path.Base.md b/content/en/functions/path.Base.md index a6bfc2bd5..fff411ad3 100644 --- a/content/en/functions/path.Base.md +++ b/content/en/functions/path.Base.md @@ -22,7 +22,7 @@ If `PATH` is empty, `.` is returned. **Note:** On Windows, `PATH` is converted to slash (`/`) separators. -``` +```go-html-template {{ path.Base "a/news.html" }} → "news.html" {{ path.Base "news.html" }} → "news.html" {{ path.Base "a/b/c" }} → "c"