Hawks12 / gitiles

Automatically exported from code.google.com/p/gitiles
0 stars 0 forks source link

Document support for Markdown definition lists #89

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Pegdown and Gitiles has explicit support for definition lists.

These look like:

  Foo
  : Explanation of Foo

And render as:

  <dl>
    <dt>Foo</dt>
    <dd>Explanation of Foo</dd>
  </dl>

This is a useful feature since documentation occasionally involves specifying 
lists of definitions. However, I don't see any mention of this in the Gitiles 
Markdown documentation. Could that be added?

Original issue reported on code.google.com by asanka@chromium.org on 30 Nov 2015 at 5:12