Add a test for manually written header tags
This commit is contained in:
parent
ab8a4dfa5a
commit
07ed00e8f7
2 changed files with 11 additions and 1 deletions
|
|
@ -62,4 +62,8 @@ const x = 'some *text* inside';
|
||||||
</style>
|
</style>
|
||||||
<style media="(width < 500px)">
|
<style media="(width < 500px)">
|
||||||
.bar { background-color: green }
|
.bar { background-color: green }
|
||||||
</style>
|
</style>
|
||||||
|
<h2 id="manual-headers"><a class="header" href="#manual-headers">Manual headers</a></h2>
|
||||||
|
<h2 id="my header"><a class="header" href="#my header"><a href="#foo">My Header</a></a></h2>
|
||||||
|
|
||||||
|
<h3 id="another-header"><a class="header" href="#another-header">Another header</a></h3>
|
||||||
|
|
@ -92,3 +92,9 @@ const x = 'some *text* inside';
|
||||||
<style media="(width < 500px)">
|
<style media="(width < 500px)">
|
||||||
.bar { background-color: green }
|
.bar { background-color: green }
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
## Manual headers
|
||||||
|
|
||||||
|
<h2 id="my header"><a href="#foo">My Header</a></h2>
|
||||||
|
|
||||||
|
<h3>Another header</h3>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue