init
This commit is contained in:
23
vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.html
vendored
Normal file
23
vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.html
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<ol start="1">
|
||||
<li>item1, num1</li>
|
||||
<li>item2, num2</li>
|
||||
<li>item3, num3</li>
|
||||
</ol>
|
||||
<hr />
|
||||
<ol start="3">
|
||||
<li>item1, num3</li>
|
||||
<li>item2, num4</li>
|
||||
<li>item3, num5</li>
|
||||
</ol>
|
||||
<hr />
|
||||
<ol start="4">
|
||||
<li>item1, num4</li>
|
||||
<li>item2, num5</li>
|
||||
<li>item3, num6</li>
|
||||
</ol>
|
||||
<hr />
|
||||
<ol start="5">
|
||||
<li>item1, num5</li>
|
||||
<li>item2, num6</li>
|
||||
<li>item3, num7</li>
|
||||
</ol>
|
||||
21
vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.md
vendored
Normal file
21
vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.md
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
1. item1, num1
|
||||
2. item2, num2
|
||||
4. item3, num3
|
||||
|
||||
---
|
||||
|
||||
3. item1, num3
|
||||
12. item2, num4
|
||||
125. item3, num5
|
||||
|
||||
---
|
||||
|
||||
4. item1, num4
|
||||
12. item2, num5
|
||||
125. item3, num6
|
||||
|
||||
---
|
||||
|
||||
5. item1, num5
|
||||
12. item2, num6
|
||||
125. item3, num7
|
||||
66
vendor/cebe/markdown/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.html
vendored
Normal file
66
vendor/cebe/markdown/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.html
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
<h2>Ordered, start's with 4</h2>
|
||||
<p>Tight:</p>
|
||||
<ol start="4">
|
||||
<li>Four</li>
|
||||
<li>Five</li>
|
||||
</ol>
|
||||
<p>and:</p>
|
||||
<ol start="4">
|
||||
<li>Four</li>
|
||||
<li>Five</li>
|
||||
<li>Six</li>
|
||||
</ol>
|
||||
<p>Loose using tabs, start's with 5:</p>
|
||||
<ol start="5">
|
||||
<li><p>Five</p>
|
||||
</li>
|
||||
<li><p>Six</p>
|
||||
</li>
|
||||
<li><p>Seven</p>
|
||||
</li>
|
||||
</ol>
|
||||
<p>and using spaces:</p>
|
||||
<ol start="5">
|
||||
<li><p>Five</p>
|
||||
</li>
|
||||
<li><p>Six</p>
|
||||
</li>
|
||||
<li><p>Seven</p>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Multiple paragraphs, start's with 5:</p>
|
||||
<ol start="5">
|
||||
<li><p>Item 1, graf one.</p>
|
||||
<p>Item 2. graf two. The quick brown fox jumped over the lazy dog's
|
||||
back.</p>
|
||||
</li>
|
||||
<li><p>Item 2.</p>
|
||||
</li>
|
||||
<li><p>Item 3.</p>
|
||||
</li>
|
||||
</ol>
|
||||
<h2>Nested, start's with 5</h2>
|
||||
<ol start="5">
|
||||
<li>Five</li>
|
||||
<li>Six:<ul>
|
||||
<li>Fee</li>
|
||||
<li>Fie</li>
|
||||
<li>Foe</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Seven</li>
|
||||
</ol>
|
||||
<p>Same thing but with paragraphs:</p>
|
||||
<ol start="5">
|
||||
<li><p>Five</p>
|
||||
</li>
|
||||
<li><p>Six:</p>
|
||||
<ul>
|
||||
<li>Fee</li>
|
||||
<li>Fie</li>
|
||||
<li>Foe</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p>Seven</p>
|
||||
</li>
|
||||
</ol>
|
||||
62
vendor/cebe/markdown/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.md
vendored
Normal file
62
vendor/cebe/markdown/tests/markdown-ol-start-num-data/md1_ordered_and_unordered_lists.md
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
## Ordered, start's with 4
|
||||
|
||||
Tight:
|
||||
|
||||
4. Four
|
||||
5. Five
|
||||
|
||||
and:
|
||||
|
||||
4. Four
|
||||
5. Five
|
||||
6. Six
|
||||
|
||||
|
||||
Loose using tabs, start's with 5:
|
||||
|
||||
5. Five
|
||||
|
||||
6. Six
|
||||
|
||||
7. Seven
|
||||
|
||||
and using spaces:
|
||||
|
||||
5. Five
|
||||
|
||||
6. Six
|
||||
|
||||
7. Seven
|
||||
|
||||
Multiple paragraphs, start's with 5:
|
||||
|
||||
5. Item 1, graf one.
|
||||
|
||||
Item 2. graf two. The quick brown fox jumped over the lazy dog's
|
||||
back.
|
||||
|
||||
6. Item 2.
|
||||
|
||||
7. Item 3.
|
||||
|
||||
## Nested, start's with 5
|
||||
|
||||
5. Five
|
||||
6. Six:
|
||||
* Fee
|
||||
* Fie
|
||||
* Foe
|
||||
7. Seven
|
||||
|
||||
Same thing but with paragraphs:
|
||||
|
||||
5. Five
|
||||
|
||||
6. Six:
|
||||
|
||||
* Fee
|
||||
* Fie
|
||||
* Foe
|
||||
|
||||
7. Seven
|
||||
|
||||
Reference in New Issue
Block a user