mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 01:33:04 +00:00
docs: make shortcodes main page a chapter #54
to adjust with the rest of the page structure
This commit is contained in:
parent
c575f9e95b
commit
2e445d2584
1 changed files with 6 additions and 1 deletions
|
@ -1,9 +1,14 @@
|
||||||
+++
|
+++
|
||||||
|
chapter = true
|
||||||
pre = "<b>3. </b>"
|
pre = "<b>3. </b>"
|
||||||
title = "Shortcodes"
|
title = "Shortcodes"
|
||||||
weight = 15
|
weight = 15
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
### Chapter 3
|
||||||
|
|
||||||
|
# Shortcodes
|
||||||
|
|
||||||
Hugo uses Markdown for its simple content format. However, there are a lot of things that Markdown doesn’t support well. You could use pure HTML to expand possibilities.
|
Hugo uses Markdown for its simple content format. However, there are a lot of things that Markdown doesn’t support well. You could use pure HTML to expand possibilities.
|
||||||
|
|
||||||
But this happens to be a bad idea. Everyone uses Markdown because it's pure and simple to read even non-rendered. You should avoid HTML to keep it as simple as possible.
|
But this happens to be a bad idea. Everyone uses Markdown because it's pure and simple to read even non-rendered. You should avoid HTML to keep it as simple as possible.
|
||||||
|
@ -12,4 +17,4 @@ To avoid this limitations, Hugo created [shortcodes](https://gohugo.io/extras/sh
|
||||||
|
|
||||||
**Hugo-theme-relearn** provides multiple shortcodes on top of existing ones.
|
**Hugo-theme-relearn** provides multiple shortcodes on top of existing ones.
|
||||||
|
|
||||||
{{%children style="h2" description="true" %}}
|
{{%children containerstyle="div" style="h2" description="true" %}}
|
||||||
|
|
Loading…
Reference in a new issue