wallyqs / org-ruby

An Org mode parser written in Ruby.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description List

opened this issue · comments

if you put this markdown:

one two
: three four five six

it gives you a Description List with kramdown:

<dl>
  <dt>one two</dt>
  <dd>three four five six</dd>
</dl>

https://kramdown.gettalong.org/syntax#definition-lists

however Org-mode does not appear to support Description Lists currently.
references:

https://developer.mozilla.org/Web/HTML/Element/dl

closing this, as it is already possible:

$ cat alpha.org
- beta :: gamma
- delta :: epsilon

$ org-ruby alpha.org
<dl>
  <dt>beta</dt><dd>gamma</dd>
  <dt>delta</dt><dd>epsilon</dd>
</dl>

https://orgmode.org/guide/Plain-lists.html