mdiep / MMMarkdown

An Objective-C framework for converting Markdown to HTML.
MIT License
1.25k stars 168 forks source link

Parser Error #1

Closed allenbobo closed 12 years ago

allenbobo commented 12 years ago

MMParser.m 848 followedByBlankLine removeObjectAtIndex:0


I have tested both release and master branch.

When I try to parse the example from this page: http://markitup.jaysalvat.com/examples/markdown/

mdiep commented 12 years ago

Thanks so much for the bug report! I fixed the issue and issued an updated release (0.2.1) that includes the fix, as well as a fix to support \r\n and \r line endings.

allenbobo commented 12 years ago

@mdiep, nice work! thanks!

BTW, it seems that MMMarkDown do not support parse "table" yet. Do you have plan to update it? 

mdiep commented 12 years ago

@allendog Tables aren't part of regular Markdown: they are a part of MultiMarkdown. I do plan to add support for MultiMarkdown, including tables, but not until regular Markdown is fully supported and I've had a chance to ensure performance.