5th December 2013 at 4:04pm
HTML definition lists are created with this syntax:
; Term being defined
: Definition of that term
; Another term
: Another definition
That renders as:
- Term being defined
- Definition of that term
- Another term
- Another definition
... and the underlying HTML is:
<dl><dt>Term being defined</dt><dd>Definition of that term</dd><dt>Another term</dt><dd>Another definition</dd></dl>