Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | No longer percent encode spaces in urls. | Waylan Limberg | 2014-01-09 | 1 | -2/+2 |
| | | | | | | | | | | | The current implementation was wrong as it also percent encoded query strings (which should be plus encoded) and calling urllib.quote on the path (and urllib.quote_plus on the query string) assumes the url is not already encoded. What if the document author pasted a url that was already encoded? She probably did not intend for `%20` to become `%2520`. Or did she? It is now clear to me why many implementation do nothing to urls. Just pass them though as-is. To bad if they are not valid HTML. HTML authors have to encodee their own urls, so I guess markdown authors have to as well. | ||||
* | Fixed #152. Spaces in links are now escaped. | Waylan Limberg | 2012-10-21 | 1 | -2/+2 |
| | |||||
* | Replaced indentation with linebreaks only. At least its more consistant - ↵ | Waylan Limberg | 2008-09-03 | 1 | -6/+2 |
| | | | | and it better matches other markdown implementations. Also updated tests. | ||||
* | A lot of bug fixes. Handlig attributes added, new hr processing. Reformatted ↵ | Artem Yunusov | 2008-07-14 | 1 | -6/+5 |
| | | | | test suite for ElementTree output. | ||||
* | Added test cases | Yuri Takhteyev | 2007-03-25 | 1 | -0/+7 |