diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2014-05-22 10:34:00 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2014-05-22 10:34:00 -0400 |
commit | bdb1bda20f484ee15f766c06f9e327bede3aea58 (patch) | |
tree | a82f139b79fd833fa73d58f40c597235fb689801 /tests/extensions | |
parent | 85be15973e754da6cdee855968f9464676520667 (diff) | |
parent | a47899fd0f8f6086a3682abbbbbd75b60928d8c7 (diff) | |
download | markdown-bdb1bda20f484ee15f766c06f9e327bede3aea58.tar.gz markdown-bdb1bda20f484ee15f766c06f9e327bede3aea58.tar.bz2 markdown-bdb1bda20f484ee15f766c06f9e327bede3aea58.zip |
Merge pull request #310 from ryneeverett/issue308
Fix issue308 and fix (unrelated) failure to break out of nest loop.
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/extra/raw-html.html | 8 | ||||
-rw-r--r-- | tests/extensions/extra/raw-html.txt | 7 |
2 files changed, 14 insertions, 1 deletions
diff --git a/tests/extensions/extra/raw-html.html b/tests/extensions/extra/raw-html.html index 897ad24..f8874c3 100644 --- a/tests/extensions/extra/raw-html.html +++ b/tests/extensions/extra/raw-html.html @@ -27,5 +27,11 @@ Note: Subelements are not required to have tail text.</div> Raw html blocks may also be nested. </div> + + </div> -<p>This text is after the markdown in html.</p>
\ No newline at end of file +<p>This text is after the markdown in html.</p> +<div name="issue308"> +<p><span>1</span> +<span>2</span></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 e906910..0a82ccf 100644 --- a/tests/extensions/extra/raw-html.txt +++ b/tests/extensions/extra/raw-html.txt @@ -44,3 +44,10 @@ Raw html blocks may also be nested. </div> This text is after the markdown in html. + +<div markdown="1" name="issue308"> + +<span>1</span> +<span>2</span> + +</div> |