In my hugo project I define a "description" attribute in a yaml config file.
description: >
Some text ...
Some more text ...
I use it in a html file and run it through the markdown preprocessor.
<p>{{ .description | markdownify }}</p>
As I normally use Asciidoc files I would prefer to have the sourcefiles in Asciidoc. But I didn't find a function like "asciidocify".
How can I do that?