djot-0.1.1.2: test/regression.test
Issue #104:
```
{1--}
{1-}
.
<p>{1--}</p>
<p>{1-}</p>
```
Issue #106:
```
|`|
.
<p>|<code>|</code></p>
```
```
|`|x
.
<p>|<code>|x</code></p>
```
Issue #127:
```
\$$`a`
.
<p>$<span class="math inline">\(a\)</span></p>
```
```
{
.`
.
<p>{
.<code></code></p>
```
Issue #57:
```
| 1 | 2 |
^ cap1
^ cap2
.
<table>
<caption>cap2</caption>
<tr>
<td>1</td>
<td>2</td>
</tr>
</table>
```
Section start after list:
```
: term
def
# New heading
.
<dl>
<dt>term</dt>
<dd>
def
</dd>
</dl>
<section id="New-heading">
<h1>New heading</h1>
</section>
```
Block quotes with markers unaligned:
```
> foo
> bar
.
<blockquote>
<p>foo
bar</p>
</blockquote>
```
```
{#convertibilità}
# Convertibilità
.
<section id="convertibilità">
<h1>Convertibilità</h1>
</section>
```
Issue #4
```
1. one
2. two
ok
.
<ol>
<li>
one
</li>
<li>
two
</li>
</ol>
<p>ok</p>
```