vmg / sundown

Standards compliant, fast, secure markdown processing library in C
1.99k stars 385 forks source link

document how to test sundown against Markdown test suites #70

Open stepheneb opened 12 years ago

stepheneb commented 12 years ago

The sundown readme states:

  • Fully standards compliant

Sundown` passes out of the box the official Markdown v1.0.0 and v1.0.3 test suites, and has been extensively tested with additional corner cases to make sure its output is as sane as possible at all times.

It would be useful to document where the official Markdown v1.0.0 and v1.0.3 test suites are hosted and how to test sundown using them.

FSX commented 12 years ago

I've been wondering how this was tested. I'm working on adding the test suite to Misaka and there are some tests that fail, but it has mostly to do with escaping. It seems that Sundown always escapes <, >, ' and " while Gruber's Markdown doesn't.

I'm using PHP-Markdown's test files.

FSX commented 12 years ago

Nevermind. I saw the test suite in Redcarpet. :)