ngocanh7948github / gitiles

Automatically exported from code.google.com/p/gitiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Document support for Markdown definition lists

GoogleCodeExporter opened this issue · comments

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