summaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-12-21 09:45:41 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-12-21 09:45:41 +0100
commit6f069e549b869c976cb6576a64812df5e7b7c809 (patch)
treeb7e3d89364d549205a0a5e54092a18e4c973593a /docs/content
parent0483299bc06a742d40528e0d675e42e149910853 (diff)
parent5a83bf314f4c0ce1d61341e0a1df21c9998e8154 (diff)
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/en/content-management/syntax-highlighting.md2
-rw-r--r--docs/content/en/functions/strings.TrimLeft.md5
-rw-r--r--docs/content/en/functions/strings.TrimRight.md4
-rw-r--r--docs/content/en/templates/shortcode-templates.md2
4 files changed, 6 insertions, 7 deletions
diff --git a/docs/content/en/content-management/syntax-highlighting.md b/docs/content/en/content-management/syntax-highlighting.md
index 841ecbd3d..ea2db4650 100644
--- a/docs/content/en/content-management/syntax-highlighting.md
+++ b/docs/content/en/content-management/syntax-highlighting.md
@@ -167,7 +167,7 @@ It is also possible to add syntax highlighting with GitHub flavored code fences.
## List of Chroma Highlighting Languages
-The full list of Chroma lexers and their aliases (which is the identifier used in the `hightlight` template func or when doing highlighting in code fences):
+The full list of Chroma lexers and their aliases (which is the identifier used in the `highlight` template func or when doing highlighting in code fences):
{{< chroma-lexers >}}
diff --git a/docs/content/en/functions/strings.TrimLeft.md b/docs/content/en/functions/strings.TrimLeft.md
index 246facd62..6bbd62cf5 100644
--- a/docs/content/en/functions/strings.TrimLeft.md
+++ b/docs/content/en/functions/strings.TrimLeft.md
@@ -20,9 +20,8 @@ aliases: []
Given the string `"abba"`, leading `"a"`'s can be removed a follows:
- {{ strings.TrimLeft "abba" "a" }} → "bba"
+ {{ strings.TrimLeft "a" "abba" }} → "bba"
Numbers can be handled as well:
- {{ strings.TrimLeft 1221 "12" }} → ""
-
+ {{ strings.TrimLeft 12 1221341221 }} → "341221"
diff --git a/docs/content/en/functions/strings.TrimRight.md b/docs/content/en/functions/strings.TrimRight.md
index 44cb9edcf..2c6040218 100644
--- a/docs/content/en/functions/strings.TrimRight.md
+++ b/docs/content/en/functions/strings.TrimRight.md
@@ -20,9 +20,9 @@ aliases: []
Given the string `"abba"`, trailing `"a"`'s can be removed a follows:
- {{ strings.TrimRight "abba" "a" }} → "abb"
+ {{ strings.TrimRight "a" "abba" }} → "abb"
Numbers can be handled as well:
- {{ strings.TrimRight 1221 "12" }} → ""
+ {{ strings.TrimRight 12 1221341221 }} → "122134"
diff --git a/docs/content/en/templates/shortcode-templates.md b/docs/content/en/templates/shortcode-templates.md
index e6dca1ccf..cfe0d316b 100644
--- a/docs/content/en/templates/shortcode-templates.md
+++ b/docs/content/en/templates/shortcode-templates.md
@@ -37,7 +37,7 @@ To create a shortcode, place an HTML template in the `layouts/shortcodes` direct
You can organize your shortcodes in subfolders, e.g. in `layouts/shortcodes/boxes`. These shortcodes would then be accessible with their relative path, e.g:
```
-{{/*< boxes/square >*/}}
+{{</* boxes/square */>}}
```
Note the forward slash.