<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/markdown/postprocessors.py, branch tox</title>
<subtitle>github.com: waylan/Python-Markdown.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/'/>
<entry>
<title>Fixed #77. util.isBlockLevel() needs to check entire tag passed to it.</title>
<updated>2012-01-30T10:53:51+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-01-30T10:53:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=c56085ee71fd67567a3d08964f7d48a93abe7fbc'/>
<id>c56085ee71fd67567a3d08964f7d48a93abe7fbc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #59. Raw HTML parsing is no longer slow.</title>
<updated>2012-01-19T04:56:56+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-01-19T04:56:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=481e50700e269f9a56337cd9fabc3b5251958d10'/>
<id>481e50700e269f9a56337cd9fabc3b5251958d10</id>
<content type='text'>
Replaced the unescape method I carlessly threw in the RawHtmlProcessor.
Unfortunetly, this reintroduces the bug just fixed in commit
425fde141f17973aea0a3a85e44632fe18737996 Sigh!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replaced the unescape method I carlessly threw in the RawHtmlProcessor.
Unfortunetly, this reintroduces the bug just fixed in commit
425fde141f17973aea0a3a85e44632fe18737996 Sigh!
</pre>
</div>
</content>
</entry>
<entry>
<title>attempt at a fix for issue w/ MD links inside of html tagish stuff with safe mode on.</title>
<updated>2012-01-13T04:20:45+00:00</updated>
<author>
<name>Mike Dirolf</name>
<email>mike@dirolf.com</email>
</author>
<published>2012-01-13T04:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=425fde141f17973aea0a3a85e44632fe18737996'/>
<id>425fde141f17973aea0a3a85e44632fe18737996</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #39. Refactored escaping so that it only escapes a predifined set of chars (the set defined by JG in the syntax rules). All other backslashes are passed through unaltered by the parser. If extensions want to add to the escapable chars, they can append to the list at markdown.ESCAPED_CHARS.</title>
<updated>2011-08-17T15:45:54+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2011-08-17T15:45:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=e5b2813bbf02710c7deb148896085a3dac4828dc'/>
<id>e5b2813bbf02710c7deb148896085a3dac4828dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a few minor Python2.4 incompatabilities. Runs in 2.4-2.7 cleanly.</title>
<updated>2011-07-22T21:47:11+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2011-07-22T21:47:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5c1eaf55cd635c96a3e263e19dd89c8e5667c43d'/>
<id>5c1eaf55cd635c96a3e263e19dd89c8e5667c43d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #28. Inline raw html is now enclosed in p tags. This used to work. Somehow we stopped checking for a single inline html element when swapping back in raw html. Added a test. Also patched a weird (invalid) comment test. Seeing the input is not really a valid html comment - it doesn't matter what we do with it. I suppose we test it to make sure it doesn't break the parser. Actual output is not so important. As a side note, this has exposed a preexisting (unrelated) bug with the extra extension's handling of raw html. That test is failing following this fix.</title>
<updated>2011-06-28T20:16:55+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2011-06-28T20:14:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8761cd1780a7cec6012354f79303f3ea488df7d9'/>
<id>8761cd1780a7cec6012354f79303f3ea488df7d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>A better implementation of globals as attributes on the Markdown class. This should be more future proof.</title>
<updated>2010-07-07T15:50:41+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2010-07-07T15:50:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=9b1de64b9e4a049f3fd5c9efc343f0e37f7ce457'/>
<id>9b1de64b9e4a049f3fd5c9efc343f0e37f7ce457</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Factored out the building of the various processors and patterns into utility functions called by a build_parser method on the Markdown class.  Editing of the processors and patterns now all happen in one file for each type.  Additionaly, a subclass of Markdown could potentially override the build_parser method and build a parser for a completely differant markup language without first building the default and then overriding it.</title>
<updated>2010-07-07T14:11:45+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2010-07-07T14:11:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a33a04439905851b5b1a5db4104ec3a11b4ab1d3'/>
<id>a33a04439905851b5b1a5db4104ec3a11b4ab1d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved a bunch of global variables to the instance of the Markdown class.</title>
<updated>2010-07-06T20:30:11+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2010-07-06T20:30:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=018aa73e82941288a1178ded751cf29d9bc13581'/>
<id>018aa73e82941288a1178ded751cf29d9bc13581</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed Global variable HTML_PLACEHOLDER. Use HtmlStash.get_placeholder(key) if you need it.</title>
<updated>2010-07-06T19:43:11+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2010-07-06T19:43:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=03bf339b594db40592d3a4848ec1e5402a371df2'/>
<id>03bf339b594db40592d3a4848ec1e5402a371df2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
