I’m a new user and still learning. I’m trying to use a definition list, i.e.
<dl><dt>Apple</dt><dd>Pomaceous fruit…</dd></dl>
Embedding this as raw html does work.
According to https://michelf.ca/projects/php-markdown/extra/ , there is a Markdown syntax to achieve this, but this doesn’t work for me:
Apple
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.
Orange
: The fruit of an evergreen tree of the genus Citrus.
This simply renders as
<p>Apple
: Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.</p>
<p>Orange
: The fruit of an evergreen tree of the genus Citrus.</p>
I have enabled Markdown Extra in system.yaml:
pages:
markdown:
extra: true
Am I doing something wrong, or are definition lists simply not implemented in Grav? It’s not a terrible problem to write them as embedded html, but it’s a bit tedious. The Markdown syntax would be simpler.

