|
From: Yuri T. <qar...@gm...> - 2010-02-22 16:31:41
|
What happens is that \] is turned into placeholder, which gives us
"<x\x02klzzwxh:0000\x03>". Then <x\x02klzzwxh:0000\x03> is picked up
as an HTML pattern and stashed away, which prevents the placeholder
from being replaced back with "]".
I am guessing we should make HTML_RE more restrictive.
- yuri
On Mon, Feb 22, 2010 at 10:57 AM, Yuri Takhteyev <qar...@gm...> wrote:
> Interesting. Here is a much simpler test case triggering this:
>
> md.convert("<x\]>")
>
> Even without any extensions, using the version from git, we get:
>
> u'<x\x02klzzwxh:0000\x03>'
>
> - yuri
>
> On Mon, Feb 22, 2010 at 9:08 AM, Tom Ritter <to...@ri...> wrote:
>> klzzwxh:0000
>
|