Pandoc will convert the following markdown:

Term 1

: Definition 1

: Definition 2

Term 2

: Definition 1

To the following HTML:

<dl>
<dt>Term 1</dt>
<dd>
<p>Definition 1</p>
</dd>
<dd>
<p>Definition 2</p>
</dd>
<dt>Term 2</dt>
<dd>
<p>Definition 1</p>
</dd>
</dl>

How easy/straightforward is it to assign identifiers to specific definition items in markdown? For example such that the resulting HTML looks like the following:

<dl>
<dt>Term 1</dt>
<dd id="def-1-term-1">
<p>Definition 1</p>
</dd>
<dd>
<p>Definition 2</p>
</dd>
<dt>Term 2</dt>
<dd>
<p>Definition 1</p>
</dd>
</dl>

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CAMwawgNTwDo55QU5dZsgeXQpG9jAr1_RevLPdshEjFgqyF%3DgLQ%40mail.gmail.com.