one-ox | plain-list and item
Table of content
Only unordered and ordered lists are supported.
Unordered lists
The following org snippet (unordered list):
- a thing,
- another thing,
- and the last one.
is exported by one-ox
as follow
<ul>
<li>
<p>a thing,</p>
</li>
<li>
<p>another thing,</p>
</li>
<li>
<p>and the last one.</p>
</li>
</ul>
and is rendered like this:
a thing,
another thing,
and the last one.
Ordered list
The following org snippet (unordered list):
1. first,
2. second,
3. third.
is exported by one-ox
as follow
<ol>
<li>
<p>a thing,</p>
</li>
<li>
<p>another thing,</p>
</li>
<li>
<p>and the last one.</p>
</li>
</ol>
and is rendered like this:
first,
second,
third.