18 lines
378 B
Markdown
18 lines
378 B
Markdown
Short codes provide code utility in content files. They can call partials but not other short codes.
|
|
|
|
`comment.html` is intentionally blank, it allows comments in content files which do nothing.
|
|
|
|
For block comments, use `hide.html` such as:
|
|
|
|
```
|
|
{{< hide >}}
|
|
lalala
|
|
|
|
this is markdown content
|
|
|
|
# secret section not published yet
|
|
|
|
super duper unfinished content
|
|
{{< /hide >}}
|
|
```
|