diff options
author | Waylan Limberg <waylan@gmail.com> | 2013-06-16 22:24:28 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2013-06-16 23:21:40 -0400 |
commit | ea4af0db29a86466e4b8b9e694299054565a29ca (patch) | |
tree | c890b6b8ee09cb073dcaee93266fb87df6c8983a /tests/extensions/attr_list.html | |
parent | ccc9c3ec580cb93aeed81b8320746c164a7acdb5 (diff) | |
download | markdown-ea4af0db29a86466e4b8b9e694299054565a29ca.tar.gz markdown-ea4af0db29a86466e4b8b9e694299054565a29ca.tar.bz2 markdown-ea4af0db29a86466e4b8b9e694299054565a29ca.zip |
Attr_List Extension now support attr_lists on nested lists.
A list item with a nested list complicates were the attr_list can be.
Fixes #218. Thanks for the report @jpzimmer.
Diffstat (limited to 'tests/extensions/attr_list.html')
-rw-r--r-- | tests/extensions/attr_list.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/extensions/attr_list.html b/tests/extensions/attr_list.html index f50cd6a..b1032f9 100644 --- a/tests/extensions/attr_list.html +++ b/tests/extensions/attr_list.html @@ -15,4 +15,15 @@ And a <strong class="nest">nested <a class="linky2" href="http://example.com" ti </code></pre> <h3 id="hash3">No colon for compatability with Headerid ext</h3> <p id="the_end">Also a codespan: <code class="foo">{: .someclass}</code>.</p> -<h3 _:="{:" id="hash5">Bad Syntax</h3>
\ No newline at end of file +<h3 _:="{:" id="hash5">Bad Syntax</h3> +<ul> +<li class="item">Item1</li> +<li class="item">Item2<ul> +<li class="subitem">Item2-1</li> +</ul> +</li> +<li class="item"><em class="emph">Item3</em><ul> +<li class="subitem"><em class="emph">Item3-1</em></li> +</ul> +</li> +</ul>
\ No newline at end of file |