## 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 >}}
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"
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"
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.