Pages
  • one.el
  • Install one.el
  • Getting started
  • How does one.el work?
  • one-default render function
  • Miscellaneous
  • one-ox
  • one-ox | headline
  • one-ox | src-block
  • one-ox | quote-block
  • one-ox | fixed-width and example-block
  • one-ox | links
  • one-ox | plain-list and item
one.el
  • one.el
  • Install one.el
  • Getting started
  • How does one.el work?
  • one-default render function
  • Miscellaneous
  • one-ox
  • one-ox | headline
  • one-ox | src-block
  • one-ox | quote-block
  • one-ox | fixed-width and example-block
  • one-ox | links
  • one-ox | plain-list and item

one-ox | plain-list and item

Table of content
  • Unordered lists
  • Ordered list

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:

  1. first,

  2. second,

  3. third.

PREVRANDOM