Displaying 2 results from an estimated 2 matches for "gen_extract_tagged".
2007 May 02
1
1.0.2b7 misrenders nested divs with attributes
...t;toggleableend">
foo
</div>
</div>
It renders it as follows:
<div class="inlinepage">
<div class="toggleableend">
foo
</div>
<p></div></p>
The problem is that it uses a backreference in the expression that it
passes to gen_extract_tagged, which is broken when Text::Balanced
wraps it in parentheses. The attached patch fixes it.
--
Matt
-------------- next part --------------
--- Markdown.pl.orig 2006-08-29 19:11:53.000000000 -0700
+++ Markdown.pl 2007-05-02 00:28:53.000000000 -0700
@@ -333,9 +336,11 @@
# before each a...
2007 May 09
3
Markdown.pl 1.0.2b8
Download:
<http://daringfireball.net/projects/downloads/Markdown_1.0.2b8.tbz>
Changes from 1.0.2b7:
+ Fixed bug with nested raw HTML tags that contained
attributes. The problem is that it uses a backreference in
the expression that it passes to gen_extract_tagged, which
is broken when Text::Balanced wraps it in parentheses.
Thanks to Matt Kraai for the patch.
+ Now supports URLs containing literal parentheses, such as:
http://en.wikipedia.org/wiki/WIMP_(computing)
Such parentheses may be arbitrar...