markdown-it-deflist.rs
A markdown-it.rs plugin to process definition lists.
It is based on the pandoc definition:
Term 1
: Definition 1
Term 2 with *inline markup*
: Definition 2
See the tests for more examples.
Usage
let parser = &mut new;
add;
add;
parser.parse.render;
// <dl>\n<dt>term</dt>\n<dd>definition</dd>\n</dl>\n