GitbookIO / kramed

A markdown (kramdown compatible) parser and compiler. Built for speed. (Fork of marked)
MIT License
223 stars 47 forks source link

Support definition lists #35

Open goodevilgenius opened 8 years ago

goodevilgenius commented 8 years ago

Kramdown supports definition lists in this format:

Item
: Definition
: Definiton

Item
: Definition
: Defintion

This isn't supported in kramed, and incorrectly is parsed as:

<p>Item
: Def1
: Def2</p>
<p>Item2
: Def3</p>