add tests
This commit is contained in:
parent
cbcda26637
commit
d8c09c13c1
38
test/specs/new/blockquote_following_nptable.html
Normal file
38
test/specs/new/blockquote_following_nptable.html
Normal file
@ -0,0 +1,38 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<blockquote><p>a blockquote</p></blockquote>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<blockquote><p>a blockquote</p></blockquote>
|
11
test/specs/new/blockquote_following_nptable.md
Normal file
11
test/specs/new/blockquote_following_nptable.md
Normal file
@ -0,0 +1,11 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
> a blockquote
|
||||
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
> a blockquote
|
38
test/specs/new/blockquote_following_table.html
Normal file
38
test/specs/new/blockquote_following_table.html
Normal file
@ -0,0 +1,38 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<blockquote><p>a blockquote</p></blockquote>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<blockquote><p>a blockquote</p></blockquote>
|
11
test/specs/new/blockquote_following_table.md
Normal file
11
test/specs/new/blockquote_following_table.md
Normal file
@ -0,0 +1,11 @@
|
||||
| abc | def |
|
||||
| --- | --- |
|
||||
| bar | foo |
|
||||
| baz | boo |
|
||||
> a blockquote
|
||||
|
||||
| abc | def |
|
||||
| --- | --- |
|
||||
| bar | foo |
|
||||
| baz | boo |
|
||||
> a blockquote
|
21
test/specs/new/code_following_nptable.html
Normal file
21
test/specs/new/code_following_nptable.html
Normal file
@ -0,0 +1,21 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<pre><code>a simple
|
||||
*indented* code block
|
||||
</code></pre>
|
6
test/specs/new/code_following_nptable.md
Normal file
6
test/specs/new/code_following_nptable.md
Normal file
@ -0,0 +1,6 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
a simple
|
||||
*indented* code block
|
19
test/specs/new/fences_following_nptable.html
Normal file
19
test/specs/new/fences_following_nptable.html
Normal file
@ -0,0 +1,19 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<pre><code>foobar()</code></pre>
|
7
test/specs/new/fences_following_nptable.md
Normal file
7
test/specs/new/fences_following_nptable.md
Normal file
@ -0,0 +1,7 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
```
|
||||
foobar()
|
||||
```
|
19
test/specs/new/heading_following_nptable.html
Normal file
19
test/specs/new/heading_following_nptable.html
Normal file
@ -0,0 +1,19 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h1 id="title">title</h1>
|
5
test/specs/new/heading_following_nptable.md
Normal file
5
test/specs/new/heading_following_nptable.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
# title
|
19
test/specs/new/hr_following_nptables.html
Normal file
19
test/specs/new/hr_following_nptables.html
Normal file
@ -0,0 +1,19 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<hr>
|
5
test/specs/new/hr_following_nptables.md
Normal file
5
test/specs/new/hr_following_nptables.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
___
|
19
test/specs/new/html_following_nptable.html
Normal file
19
test/specs/new/html_following_nptable.html
Normal file
@ -0,0 +1,19 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>Some HTML</div>
|
5
test/specs/new/html_following_nptable.md
Normal file
5
test/specs/new/html_following_nptable.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
<div>Some HTML</div>
|
22
test/specs/new/inlinecode_following_nptables.html
Normal file
22
test/specs/new/inlinecode_following_nptables.html
Normal file
@ -0,0 +1,22 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>hello</code></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
5
test/specs/new/inlinecode_following_nptables.md
Normal file
5
test/specs/new/inlinecode_following_nptables.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
`hello`
|
26
test/specs/new/lheading_following_nptable.html
Normal file
26
test/specs/new/lheading_following_nptable.html
Normal file
@ -0,0 +1,26 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>title</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=====</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
6
test/specs/new/lheading_following_nptable.md
Normal file
6
test/specs/new/lheading_following_nptable.md
Normal file
@ -0,0 +1,6 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
title
|
||||
=====
|
@ -14,6 +14,13 @@
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>title</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>=====</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h1 id="title">title</h1>
|
||||
|
23
test/specs/new/list_following_nptable.html
Normal file
23
test/specs/new/list_following_nptable.html
Normal file
@ -0,0 +1,23 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<ul>
|
||||
<li>foo</li>
|
||||
<li>bar</li>
|
||||
<li>baz</li>
|
||||
</ul>
|
7
test/specs/new/list_following_nptable.md
Normal file
7
test/specs/new/list_following_nptable.md
Normal file
@ -0,0 +1,7 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
- foo
|
||||
- bar
|
||||
- baz
|
22
test/specs/new/strong_following_nptables.html
Normal file
22
test/specs/new/strong_following_nptables.html
Normal file
@ -0,0 +1,22 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>strong</strong></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
5
test/specs/new/strong_following_nptables.md
Normal file
5
test/specs/new/strong_following_nptables.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
**strong**
|
22
test/specs/new/text_following_nptables.html
Normal file
22
test/specs/new/text_following_nptables.html
Normal file
@ -0,0 +1,22 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>abc</th>
|
||||
<th>def</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>bar</td>
|
||||
<td>foo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>baz</td>
|
||||
<td>boo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hello</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
5
test/specs/new/text_following_nptables.md
Normal file
5
test/specs/new/text_following_nptables.md
Normal file
@ -0,0 +1,5 @@
|
||||
abc | def
|
||||
--- | ---
|
||||
bar | foo
|
||||
baz | boo
|
||||
hello
|
Loading…
x
Reference in New Issue
Block a user