1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

update readme

This commit is contained in:
Emanuil Rusev 2015-01-10 03:43:48 +02:00
parent c45dee6850
commit 86a27b48bc

View File

@ -34,7 +34,7 @@ More examples in [the wiki](https://github.com/erusev/parsedown/wiki/Usage) and
It tries to read Markdown like a human. First, it looks at the lines. Its interested in how the lines start. This helps it recognise blocks. It knows, for example, that if a line start with a `-` then it perhaps belong to a list. Once it recognises the blocks, it continues to the content. As it reads, it watches out for special characters. This helps it recognise inline elements (or inlines).
**Why doesnt Parsedown use namespaces?**<br/>
It'd mean no support for PHP 5.2. Is it worth it?
It'd mean no support for PHP 5.2. Would it be worth it?
**Is Parsedown compliant with CommonMark?**<br/>
The majority of the CommonMark tests pass. Most of the tests that don't pass deal with cases that are quite extreme. Yet, we are working on them. As CommonMark matures, compliance should improve.