Skip to content

Commit

Permalink
Add a pending test for issue #64 (nested lists with a single item)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhollis committed Feb 16, 2013
1 parent 76440f0 commit 4457b4d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions spec/block_docs/issue64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
PENDING - Nested list with a single item. https://github.com/bhollis/maruku/issues/64
*** Parameters: ***
{}
*** Markdown input: ***
A nested list with a single item (does not work)

- three items:
- item 1
- item 2
- item 3
- one item:
- item
- two items:
- item a
- item b

*** Output of inspect ***

*** Output of to_html ***
<p>A nested list with a single item (does not work)</p>

<ul>
<li>three items:

<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul></li>
<li>one item:

<ul>
<li>item</li>
</ul></li>
<li>two items:

<ul>
<li>item a</li>
<li>item b</li>
</ul></li>
</ul>

0 comments on commit 4457b4d

Please sign in to comment.