Bugs: Browse | Submit New | Admin

[#23846] Deep lists fail unless they're paragraphed

Date:
2009-02-07 22:02
Priority:
3
Submitted By:
Nobody
Assigned To:
Andrea Censi (andrea)
Category:
Markdown Parser
State:
Open
Summary:
Deep lists fail unless they're paragraphed

Detailed description
I want to be able to have a list w/ several levels of nesting, but not have the line breaks between them. 

But it looks like that doesn't work

This code:

+ 1
  
  + 2
  
    + 3

Produces

<ul>
<li>
<p>1</p>

<ul>
<li>
<p>2</p>

<ul>

<li>3</li>
</ul>
</li>
</ul>
</li>
</ul>

and displays how I want it, except with line breaks in between (more or less like what the code looks like but
w/ different-shaped bullets).

but this:

+ 1
  + 2
    + 3

makes this:
<ul>
<li>1 + 2 + 3</li>
</ul>

and displays like:
    * 1 + 2 + 3
where that * is a bullet. 

I tried using tabs instead of 2 spaces, which makes it fully work in regular markdown how I want it, but that got the
same result in maruku.

Add A Comment: Notepad

Please login


Followup

No Followups Have Been Posted

Attached Files:

Name Description Download
No Files Currently Attached

Changes:

No Changes Have Been Made to This Item