aboutsummaryrefslogtreecommitdiffstats
path: root/tests/basic/angle-links-and-img.html
Commit message (Collapse)AuthorAgeFilesLines
* No longer percent encode spaces in urls.Waylan Limberg2014-01-091-1/+1
| | | | | | | | | | | 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 Limberg2012-10-211-1/+1
|
* Moved test dir back out of markdown lib. We don't need to install the tests ↵Waylan Limberg2010-02-121-0/+4
in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.