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-
This commit is contained in:
Dominic Reich 2023-07-30 11:12:46 +02:00
parent 90b12d7203
commit 846a2f341a
Signed by: dominic
GPG key ID: BC9D6AE1A3BE169A

View file

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