From: Artem <ne...@gm...> - 2008-07-02 23:15:18
|
Yuri Takhteyev wrote: > After another second's thought, if we can stick with alphanumeric IDs > for placeholders, perhaps this would be more parsimonious: > > START+<type>+":"+<id>+END > > (Type should also be alphanumeric.) > > http://gitorious.org/projects/python-markdown/repos/mainline/commits/2edd84e > > Done :) Also fixed some bugs. And also I noticed that some tests from our test suite is wrong, for instance(stronintags): this is a [**test**](http://example.com/) this is a second **[test](http://example.com)** reference **[test][]** reference [**test**][] second link should be strong, but it splits in two ems: <p>this is a <a href="http://example.com/"><strong>test</strong></a> </p> <p>this is a second <em></em><a href="http://example.com">test</a><em></em> </p> <p>reference <strong>[test][]</strong> reference [<strong>test</strong>][] </p> |