File: advanced-lists.html

package info (click to toggle)
ruby-org 0.9.12-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,852 kB
  • sloc: ruby: 3,044; lisp: 50; makefile: 4
file content (61 lines) | stat: -rw-r--r-- 1,385 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<p>Advanced Lists</p>
<p><code>org-ruby</code> supports the following list features of <code>org-mode</code>:</p>
<h1>Nested lists</h1>
<ul>
  <li>You can have nested lists</li>
  <li>This is first-level
    <ul>
      <li>This is a nested item</li>
      <li>This is another nested item</li>
    </ul>
  </li>
  <li>Back to the first level</li>
  <li>Another first level item
    <ol>
      <li>This is a numbered list nested within the unordered list</li>
      <li>This is another numbered item</li>
    </ol>
  </li>
</ul>
<p>Note the list ends just some more text. Make sure both list blocks
  are closed.</p>
<h1>Multi-paragraph list items</h1>
<p>This list will end with the end-of-file. Make sure all blocks are closed.</p>
<ul>
  <li>This is a list item</li>
  <li>This list item has multiple paragraphs.
    <p>This is paragraph two.</p>
    <p>And paragraph three.</p>
  </li>
  <li>Back to a list item.
    <ul>
      <li>Nested, just for grins!</li>
      <li>woo hoo!</li>
    </ul>
  </li>
</ul>
<h1>Hyphen, Plus and Asterisk can be used to create lists</h1>
<ul>
  <li>One
    <ul>
      <li>uno
        <ul>
          <li>ichi</li>
        </ul>
      </li>
      <li>uno</li>
    </ul>
  </li>
  <li>Two
    <ul>
      <li>dos
        <ul>
          <li>ni</li>
          <li>ni</li>
        </ul>
      </li>
    </ul>
  </li>
  <li>Three</li>
  <li>Four</li>
</ul>