block: rm extra new line after raw blocks

match reference implementation
This commit is contained in:
Noah Hellman 2023-07-14 20:34:46 +02:00
parent b60650dd0d
commit 0586bf6a44
3 changed files with 61 additions and 2 deletions

View file

@ -0,0 +1,19 @@
````
```=html
<tag1>
<tag2>
```
paragraph
```=html
</tag2>
</tag1>
```
.
<tag1>
<tag2>
<p>paragraph</p>
</tag2>
</tag1>
````