Is it possible to add own classes in h1–h6 and p tags with yaml? Example:
TXT
# This is main heading to be processed with magic
And I would like to have all h1 tags adapted with custom class "main-heading" -> output in html
HTML
<h1 class="main-heading">This is main heading to be processed with magic</h1>
Maybe something like this in yaml:
YAML
process:
content:
classes:
h1: main-heading
---