<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/tests/extensions, branch 2.3.1.final</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>Updated toc tests.</title>
<updated>2013-02-19T21:31:46+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-02-19T21:31:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=3b732805676969fdf61ac3214c42ab94e96da0ea'/>
<id>3b732805676969fdf61ac3214c42ab94e96da0ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>adding test for out of order headlines</title>
<updated>2013-02-18T10:24:13+00:00</updated>
<author>
<name>benjaoming</name>
<email>benjaoming@gmail.com</email>
</author>
<published>2013-02-18T10:24:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=f6a075a3a907c0e03e80cc69b61e3205c89feb2a'/>
<id>f6a075a3a907c0e03e80cc69b61e3205c89feb2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow capitalized Admonition title.</title>
<updated>2013-02-12T14:47:17+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-02-12T14:47:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=d35e73be19e00e8897c4c6acff5b5506b7235ae5'/>
<id>d35e73be19e00e8897c4c6acff5b5506b7235ae5</id>
<content type='text'>
If an adminition title is capitalized, the html class on the
div should still be lowercased.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If an adminition title is capitalized, the html class on the
div should still be lowercased.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into admonition</title>
<updated>2013-02-09T19:39:12+00:00</updated>
<author>
<name>Tiago Serafim</name>
<email>tserafim@gmail.com</email>
</author>
<published>2013-02-09T18:51:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1'/>
<id>14f43d5a4c91ac13528f4c9eb8c6247fdafb0ea1</id>
<content type='text'>
Conflicts:
	docs/extensions/index.txt
	tests/extensions/test.cfg
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	docs/extensions/index.txt
	tests/extensions/test.cfg
</pre>
</div>
</content>
</entry>
<entry>
<title>nl2br and attr_list compatability.</title>
<updated>2013-02-06T19:54:58+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-02-06T19:54:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=4ff74e33a48a8c4e101d2f5e259d7b911c03d9f9'/>
<id>4ff74e33a48a8c4e101d2f5e259d7b911c03d9f9</id>
<content type='text'>
Fixes #177. When using both extensions, breaks (`&lt;br&gt;`) must have a linebreak (`\n`) after them before attr_list is run. This patch reorders the treeprocessors so that happens ('attr_list' runs after 'prettify' not before).

Also had to alter headerid extension so it runs after 'prettify' or it would run before 'attr_list' if loaded before 'attr_list' by user.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #177. When using both extensions, breaks (`&lt;br&gt;`) must have a linebreak (`\n`) after them before attr_list is run. This patch reorders the treeprocessors so that happens ('attr_list' runs after 'prettify' not before).

Also had to alter headerid extension so it runs after 'prettify' or it would run before 'attr_list' if loaded before 'attr_list' by user.
</pre>
</div>
</content>
</entry>
<entry>
<title>Account for a paragraph that starts with a colon when processing def_lists</title>
<updated>2013-02-06T18:42:03+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-02-06T18:42:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=fdfa88b77eff39cda4716fdb49444f5e56d144ac'/>
<id>fdfa88b77eff39cda4716fdb49444f5e56d144ac</id>
<content type='text'>
Fixes #171. While that report provided an example of an unordered list item that started with a colon, any block that starts with a colon and has no siblings before it (paragraph as begining if document, list item, etc) all exhibit this same behavior. Following PHP Markdown Extra's lead, these are not definition items as they have no term before them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #171. While that report provided an example of an unordered list item that started with a colon, any block that starts with a colon and has no siblings before it (paragraph as begining if document, list item, etc) all exhibit this same behavior. Following PHP Markdown Extra's lead, these are not definition items as they have no term before them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #164. attr_list extension attribute names are now sanitized and won't crash the serealizer.</title>
<updated>2012-12-13T19:05:33+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-12-13T19:05:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a8e06b7cef5c5b0b372b9a0db0f56c4e7094e2bd'/>
<id>a8e06b7cef5c5b0b372b9a0db0f56c4e7094e2bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More tests for the extension and new tests for the RE. It's now possible to use an explicit blank title to not have the &lt;p&gt; tag with the title rendered.</title>
<updated>2012-09-19T21:37:02+00:00</updated>
<author>
<name>Tiago Serafim</name>
<email>tserafim@gmail.com</email>
</author>
<published>2012-09-19T21:37:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=9756cb9f6014347179a9acf54a739aad5dda0c6d'/>
<id>9756cb9f6014347179a9acf54a739aad5dda0c6d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial version with insufficient tests and no docs.</title>
<updated>2012-09-02T23:12:53+00:00</updated>
<author>
<name>Tiago Serafim</name>
<email>tserafim@gmail.com</email>
</author>
<published>2012-09-02T23:12:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=83382bcefb246f1169b0d01375fcd86cd05b031e'/>
<id>83382bcefb246f1169b0d01375fcd86cd05b031e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix `footnote_many_footnotes` test as per #129</title>
<updated>2012-08-25T15:04:13+00:00</updated>
<author>
<name>Dmitry Shachnev</name>
<email>mitya57@gmail.com</email>
</author>
<published>2012-08-25T15:04:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=34fb2dc4ddef833bd233705b4a46bea914742075'/>
<id>34fb2dc4ddef833bd233705b4a46bea914742075</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
