forked from mirrors/hugo-tufte
It seems there are some issues in wrapping complex blocks of markdown in html tags, especially when the block contains other short codes. Content would either only partially render or fail completely.
9 lines
133 B
HTML
9 lines
133 B
HTML
{{ with .Get 0 }}
|
|
{{ if eq . "begin" }}
|
|
<section>
|
|
{{ else if eq . "end" }}
|
|
</section>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
|