aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2014-12-30 13:58:58 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2014-12-30 13:58:58 -0500
commit49fa23af8141f7c5665e2e8633ad425cd823dfec (patch)
tree66bf2bbc9a12578dac6db8e97672838ad92a4833 /tests/extensions
parent86ca8ce1eb316f796d9a3e8e70da0ad844a89f48 (diff)
downloadmarkdown-49fa23af8141f7c5665e2e8633ad425cd823dfec.tar.gz
markdown-49fa23af8141f7c5665e2e8633ad425cd823dfec.tar.bz2
markdown-49fa23af8141f7c5665e2e8633ad425cd823dfec.zip
Preserve order of nested headers in TOC
Fixes #380. The TOC replacement is now seperate from building the TOC, which allows us to iter through the doc in order rather than with the non-order-preserving interparent pethod. This is almost a complete refactor of the run method. Also cleaned up the config stuff. Thanks to @colewerner for the report and test case.
Diffstat (limited to 'tests/extensions')
-rw-r--r--tests/extensions/test.cfg4
-rw-r--r--tests/extensions/toc_nested_list.html30
-rw-r--r--tests/extensions/toc_nested_list.txt19
3 files changed, 53 insertions, 0 deletions
diff --git a/tests/extensions/test.cfg b/tests/extensions/test.cfg
index 5605d3f..7e27b29 100644
--- a/tests/extensions/test.cfg
+++ b/tests/extensions/test.cfg
@@ -36,6 +36,10 @@ toc_nested2:
markdown.extensions.toc:
permalink: "[link]"
+toc_nested_list:
+ extensions:
+ - markdown.extensions.toc
+
wikilinks:
extensions:
- markdown.extensions.wikilinks
diff --git a/tests/extensions/toc_nested_list.html b/tests/extensions/toc_nested_list.html
new file mode 100644
index 0000000..6912411
--- /dev/null
+++ b/tests/extensions/toc_nested_list.html
@@ -0,0 +1,30 @@
+<h1 id="title">Title</h1>
+<div class="toc">
+<ul>
+<li><a href="#title">Title</a><ul>
+<li><a href="#section-1">Section 1</a><ul>
+<li><a href="#subsection-1">Subsection 1</a></li>
+<li><a href="#subsection-2">Subsection 2</a></li>
+</ul>
+</li>
+<li><a href="#section-2">Section 2</a></li>
+<li><a href="#section-3">Section 3</a></li>
+</ul>
+</li>
+</ul>
+</div>
+<h2 id="section-1">Section 1</h2>
+<ol>
+<li>
+<p>List Item 1</p>
+<h3 id="subsection-1">Subsection 1</h3>
+<p>Explanation 1</p>
+</li>
+<li>
+<p>List Item 2</p>
+<h3 id="subsection-2">Subsection 2</h3>
+<p>Explanation 2</p>
+</li>
+</ol>
+<h2 id="section-2">Section 2</h2>
+<h2 id="section-3">Section 3</h2> \ No newline at end of file
diff --git a/tests/extensions/toc_nested_list.txt b/tests/extensions/toc_nested_list.txt
new file mode 100644
index 0000000..d83e96f
--- /dev/null
+++ b/tests/extensions/toc_nested_list.txt
@@ -0,0 +1,19 @@
+# Title
+
+[TOC]
+
+## Section 1
+
+1. List Item 1
+
+ ### Subsection 1
+ Explanation 1
+
+2. List Item 2
+
+ ### Subsection 2
+ Explanation 2
+
+## Section 2
+
+## Section 3 \ No newline at end of file