russross / blackfriday

Blackfriday: a markdown processor for Go
Other
5.42k stars 598 forks source link

Definition lists can't cope with multiple terms per definition #564

Open garthk opened 5 years ago

garthk commented 5 years ago

Multiple <dt> per <dd> is valid HTML, but Blackfriday discards all but the last:

`trace.span_id`
`trace.trace_id`
`trace.parent_id`
: trace attributes

`service_name`
: service name

<dl>
<dt><code>trace.parent_id</code></dt>
<dd>trace attributes</dd>
<dt><code>service_name</code></dt>
<dd>service name</dd>
</dl>

Might not be #263, but might be fixable alongside #263.