update config/_default/markup.toml to allow style-sheeting paragraphs like:

#v+
A test paragraph
{.custom-style-class}
#v-

Which should result in something like:

#v+
<p class="custom-style-class">A test paragraph</p>
#v-
main
Dominic Reich 1 year ago
parent 90b12d7203
commit 846a2f341a
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -5,6 +5,10 @@
[goldmark.renderer]
unsafe = true
[goldmark.parser]
[goldmark.parser.attribute]
block = true
[highlight]
noClasses = false

Loading…
Cancel
Save