File: lists.html

package info (click to toggle)
ruby-reverse-markdown 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: ruby: 1,452; makefile: 4
file content (104 lines) | stat: -rw-r--r-- 2,433 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<html>
  <body>
    <p>some text...</p>

    <ul>
      <li>unordered list entry</li>
      <li>unordered list entry 2</li>
    </ul>

    <ol>
      <li>ordered list entry</li>
      <li>ordered list entry 2</li>
    </ol>

    <ol>
      <li>list entry 1st hierarchy</li>
      <li>
        <ul>
          <li>nested unsorted list entry</li>
          <li>
            <ol>
              <li>deep nested list entry</li>
            </ol>
          </li>
        </ul>
      </li>
    </ol>

    <p>a nested list with no whitespace:</p>
    <ul><li>item a</li><li>item b<ul><li>item bb</li><li>item bc</li></ul></li></ul>

    <p>a nested list with lots of whitespace:</p>
    <ul>  <li>  item   wa  </li>  <li> item wb <ul> <li> item wbb </li> <li> item wbc </li> </ul> </li> </ul>

    <ul>
      <li class="toclevel-1 tocsection-1"><a href="Basic_concepts"><span class="tocnumber">1</span> <span class="toctext">Basic concepts</span></a></li>
      <li class="toclevel-1 tocsection-2"><a href="History_of_the_idea"><span class="tocnumber">2</span> <span class="toctext">History of the idea</span></a></li>
      <li class="toclevel-1 tocsection-3"><a href="Intelligence_explosion"><span class="tocnumber">3</span> <span class="toctext">Intelligence explosion</span></a>
    </ul>

    <ul>
      <li>
        <p dir="ltr">I want to have a party at my house!</p>
      </li>
    </ul>

    <ul><li> <p>I don't want to cleanup after the party!</p> </li></ul>

    <ul>
      <li>
        <p>li 1, p 1</p>
        <p>li 1, p 2</p>
      </li>
      <li><p>li 2, p 1</p></li>
    </ul>

    <ol>
      <li>
        one
        <ol>
          <li>one one</li>
          <li>one two</li>
        </ol>
      </li>
      <li>
        two
        <ol>
          <li>
            two one
            <ol>
              <li>two one one</li>
              <li>two one two</li>
            </ol>
          </li>
          <li>two two</li>
        </ol>
      </li>
      <li>three</li>
    </ol>

    <p>a nested list between adjacent list items</p>
    <ul>
      <li>alpha</li>
      <li>bravo
        <ul>
          <li>bravo alpha</li>
          <li>bravo bravo
            <ul>
              <li>bravo bravo alpha</i>
            </ul>
          </li>
        </ul>
      </li>
      <li>charlie</li>
      <li>delta</li>
    </ul>

    <ul>
      <li>item followed with a text</li>
    </ul>
    text after the list

  </body>
</html>