[ANN] Markdown 1.0.2b2

John Gruber gruber at fedora.net
Sun Mar 27 00:09:25 EST 2005


Download:

  <http://daringfireball.net/projects/downloads/Markdown_1.0.2b2.zip>

Changes from 1.0.2b1:

+   Fix for nested sub-lists in list-paragraph mode. Previously we got
    a spurious extra level of `<p>` tags for something like this:
    
        *   this
        
            *   sub
        
            that
    
+   Experimental support for [this] as a synonym for [this][].


The code to support the new link shortcut syntax will need to
improve before 1.0.2 ships, as mentioned in the "[Link] shortcut"
thread last week.

There is a new archive of test files here:

<http://daringfireball.net/projects/downloads/MarkdownTest_1.0_2005-03-26.zip>


* * *

I was bitten by this bug today:

    *   this
    
        *   sub
    
        that

Markdown was producing this:
    
    <ul>
    <li><p>this</p>
    
    <ul>
    <li>sub</li>
    </ul>
    
    <p><p>that</p></li>
    </ul></p>

Note the extra `<p>` tags around the last group of lines.

I can't believe this didn't turn up until today. Or that I somehow
managed to ignore any previous reports about it.

-J.G.


More information about the Markdown-Discuss mailing list