diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-02-18 10:24:43 -0800 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-02-18 10:24:43 -0800 |
commit | 53a7fc80f12cc1da699c2a7f56da13da32e6de8f (patch) | |
tree | a6a11ad14404fdbf943036d686bf078c61061fd3 /tests/extensions | |
parent | 2bdc10c403f13ada2adc30aa42749a2e79c7206d (diff) | |
parent | f6a075a3a907c0e03e80cc69b61e3205c89feb2a (diff) | |
download | markdown-53a7fc80f12cc1da699c2a7f56da13da32e6de8f.tar.gz markdown-53a7fc80f12cc1da699c2a7f56da13da32e6de8f.tar.bz2 markdown-53a7fc80f12cc1da699c2a7f56da13da32e6de8f.zip |
Merge pull request #192 from benjaoming/master
Little changes
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/test.cfg | 3 | ||||
-rw-r--r-- | tests/extensions/toc_out_of_order.html | 8 | ||||
-rw-r--r-- | tests/extensions/toc_out_of_order.txt | 5 |
3 files changed, 16 insertions, 0 deletions
diff --git a/tests/extensions/test.cfg b/tests/extensions/test.cfg index 4efd837..7f082cf 100644 --- a/tests/extensions/test.cfg +++ b/tests/extensions/test.cfg @@ -12,6 +12,9 @@ extensions=toc [toc_invalid] extensions=toc +[toc_out_of_order] +extensions=toc + [toc_nested] extensions=toc 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 diff --git a/tests/extensions/toc_out_of_order.txt b/tests/extensions/toc_out_of_order.txt new file mode 100644 index 0000000..f08bdbc --- /dev/null +++ b/tests/extensions/toc_out_of_order.txt @@ -0,0 +1,5 @@ +[TOC] + +## Header 2 + +# Header 1 |