diff options
author | benjaoming <benjaoming@gmail.com> | 2013-02-18 11:24:13 +0100 |
---|---|---|
committer | benjaoming <benjaoming@gmail.com> | 2013-02-18 11:24:13 +0100 |
commit | f6a075a3a907c0e03e80cc69b61e3205c89feb2a (patch) | |
tree | a6a11ad14404fdbf943036d686bf078c61061fd3 /tests/extensions/toc_out_of_order.html | |
parent | 9735b54f17ae31b240ad00b0e7e3d3423f447789 (diff) | |
download | markdown-f6a075a3a907c0e03e80cc69b61e3205c89feb2a.tar.gz markdown-f6a075a3a907c0e03e80cc69b61e3205c89feb2a.tar.bz2 markdown-f6a075a3a907c0e03e80cc69b61e3205c89feb2a.zip |
adding test for out of order headlines
Diffstat (limited to 'tests/extensions/toc_out_of_order.html')
-rw-r--r-- | tests/extensions/toc_out_of_order.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/extensions/toc_out_of_order.html b/tests/extensions/toc_out_of_order.html new file mode 100644 index 0000000..93d8b04 --- /dev/null +++ b/tests/extensions/toc_out_of_order.html @@ -0,0 +1,8 @@ +<div class="toc"> +<ul> +<li><a href="#header-2">Header 2</a></li> +<li><a href="#header-1">Header 1</a></li> +</ul> +</div> +<h2 id="header-2">Header 2</h2> +<h1 id="header-1">Header 1</h1>
\ No newline at end of file |