aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc
diff options
context:
space:
mode:
authorfacelessuser <faceless.shop@gmail.com>2014-10-18 13:17:53 -0600
committerfacelessuser <faceless.shop@gmail.com>2014-10-18 13:17:53 -0600
commit72c819a6c7e10836f9ff67f662ac183fd01f5873 (patch)
tree366d1bab4288782cc6d90ec4421973f223225b70 /tests/misc
parent57633f1743cc16e16c140cc92f860c62d872b6cc (diff)
downloadmarkdown-72c819a6c7e10836f9ff67f662ac183fd01f5873.tar.gz
markdown-72c819a6c7e10836f9ff67f662ac183fd01f5873.tar.bz2
markdown-72c819a6c7e10836f9ff67f662ac183fd01f5873.zip
Fix tail out of order issue
This issue was discovered when dealing with nested inlines. In treeprocessors.py it was incorrectly handling tails. In short, tail elements were being inserted earlier than they were supposed to be. In order to fix this, the insertion index should be incremented by 1 so that when the tails are inserted into the parent, they will be just after the child they came from. Also added a test in nested-patterns to catch this issue.
Diffstat (limited to 'tests/misc')
-rw-r--r--tests/misc/nested-patterns.html3
-rw-r--r--tests/misc/nested-patterns.txt2
2 files changed, 4 insertions, 1 deletions
diff --git a/tests/misc/nested-patterns.html b/tests/misc/nested-patterns.html
index 1ac98ee..8c46a58 100644
--- a/tests/misc/nested-patterns.html
+++ b/tests/misc/nested-patterns.html
@@ -4,4 +4,5 @@
<strong><a href="http://example.com"><em>link</em></a></strong>
<strong><a href="http://example.com"><em>link</em></a></strong>
<strong><a href="http://example.com"><em>link</em></a></strong>
-<a href="http://example.com"><strong><em>link</em></strong></a></p> \ No newline at end of file
+<a href="http://example.com"><strong><em>link</em></strong></a></p>
+<p><strong><em>I am <strong><em>italic</em> and</strong> bold</em> I am <code>just</code> bold</strong></p> \ No newline at end of file
diff --git a/tests/misc/nested-patterns.txt b/tests/misc/nested-patterns.txt
index c651b86..e347ccf 100644
--- a/tests/misc/nested-patterns.txt
+++ b/tests/misc/nested-patterns.txt
@@ -5,3 +5,5 @@ __[_link_](http://example.com)__
__[*link*](http://example.com)__
**[_link_](http://example.com)**
[***link***](http://example.com)
+
+***I am ___italic_ and__ bold* I am `just` bold**