aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions
diff options
context:
space:
mode:
authorfacelessuser <faceless.shop@gmail.com>2015-09-04 19:45:44 -0600
committerfacelessuser <faceless.shop@gmail.com>2015-09-04 19:45:44 -0600
commit6cd3765a1d60b6557b9f083b4218fe00287a9329 (patch)
treee68313e9c551b1998dfc39b7df766f310c58abd5 /tests/extensions
parentd442f575a35fdf5f7b78df7355c32c4728ff98be (diff)
downloadmarkdown-6cd3765a1d60b6557b9f083b4218fe00287a9329.tar.gz
markdown-6cd3765a1d60b6557b9f083b4218fe00287a9329.tar.bz2
markdown-6cd3765a1d60b6557b9f083b4218fe00287a9329.zip
Fix infinite loop #430
This should fix the remaining corner cases that can cause infinite loops. Previous iterations did not account for scenarios where the “end” index was less than the “start” index. If the “end” index is ever less than or equal to the “start” index, the “end” will be adjusted to to be “start” + 1 allow the full range to be extracted and replaced.
Diffstat (limited to 'tests/extensions')
-rw-r--r--tests/extensions/extra/raw-html.html7
-rw-r--r--tests/extensions/extra/raw-html.txt6
2 files changed, 12 insertions, 1 deletions
diff --git a/tests/extensions/extra/raw-html.html b/tests/extensions/extra/raw-html.html
index 7acb2ee..9c0222f 100644
--- a/tests/extensions/extra/raw-html.html
+++ b/tests/extensions/extra/raw-html.html
@@ -41,4 +41,9 @@ Raw html blocks may also be nested.
<p>Markdown is <em>still</em> active here.</p>
</div>
-<p>Markdown is <em>active again</em> here.</p> \ No newline at end of file
+<p>Markdown is <em>active again</em> here.</p>
+<div>
+<p>foo bar</p>
+<p><em>bar</em>
+</p>
+</div> \ No newline at end of file
diff --git a/tests/extensions/extra/raw-html.txt b/tests/extensions/extra/raw-html.txt
index 72f530b..da24af0 100644
--- a/tests/extensions/extra/raw-html.txt
+++ b/tests/extensions/extra/raw-html.txt
@@ -65,3 +65,9 @@ Markdown is *still* active here.
</div>
Markdown is *active again* here.
+
+<div markdown=1>
+foo bar
+
+<em>bar</em>
+</div>