<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git, branch baserock/morph</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>Added support for attr_lists on definition list terms.</title>
<updated>2013-07-20T01:39:14+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-07-20T01:39:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a9ca97325e9039de90eae29fb3d8879bc9f367f6'/>
<id>a9ca97325e9039de90eae29fb3d8879bc9f367f6</id>
<content type='text'>
Like headers (h1-6) dt's can only be on one line, so we need to use
the header regex on dt's. This was implemented after considering a recent
[discussion](http://six.pairlist.net/pipermail/markdown-discuss/2013-July/002859.html)
on the markdown mailing list. Prior to that discussion, I never considered
that it was impossable to set block level attrs on dt's. Now it is.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Like headers (h1-6) dt's can only be on one line, so we need to use
the header regex on dt's. This was implemented after considering a recent
[discussion](http://six.pairlist.net/pipermail/markdown-discuss/2013-July/002859.html)
on the markdown mailing list. Prior to that discussion, I never considered
that it was impossable to set block level attrs on dt's. Now it is.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow inline attr_lists at end of header.</title>
<updated>2013-07-20T01:18:18+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-07-20T01:18:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=fbfa42dfafaa7b129c864cc359f9e6697887dab3'/>
<id>fbfa42dfafaa7b129c864cc359f9e6697887dab3</id>
<content type='text'>
A header can be only one line - so unlike other block level elements, a
attr_list must be at th eend of the line. To disingush it from an inline
attr_list on the last child in a header, we must require at least one
space before th eblock-level attrt_list.

Always intended it to work that way. Not sure how I missed that before.
At least we're testing for it now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A header can be only one line - so unlike other block level elements, a
attr_list must be at th eend of the line. To disingush it from an inline
attr_list on the last child in a header, we must require at least one
space before th eblock-level attrt_list.

Always intended it to work that way. Not sure how I missed that before.
At least we're testing for it now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Attr_List Extension now also supports nested ol's.</title>
<updated>2013-07-19T22:58:50+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-07-19T22:58:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=effa7a8aaace52b466fdd19ffd97e5e33e2a9a3a'/>
<id>effa7a8aaace52b466fdd19ffd97e5e33e2a9a3a</id>
<content type='text'>
Not sure how I missed that when committing ea4af0d. Also as a side-effect,
this fixes #230 - which brought my previous oversight to my attention.
Thanks for the report @divisoryang.

Also added some tests - including tests of list items without attr_lists.
Sometimes I forget to test markup that does not use an extension when an
extension is enabled. That's what resulted in #230 being reported.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not sure how I missed that when committing ea4af0d. Also as a side-effect,
this fixes #230 - which brought my previous oversight to my attention.
Thanks for the report @divisoryang.

Also added some tests - including tests of list items without attr_lists.
Sometimes I forget to test markup that does not use an extension when an
extension is enabled. That's what resulted in #230 being reported.
</pre>
</div>
</content>
</entry>
<entry>
<title>MetaData no longer fails with no newline. Fixes #228.</title>
<updated>2013-07-03T13:39:15+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-07-03T13:39:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5529647cd03468a7d2ae085c86b397d2b2379ab8'/>
<id>5529647cd03468a7d2ae085c86b397d2b2379ab8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor cleanup.</title>
<updated>2013-06-17T03:25:49+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-06-17T03:25:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=38436802c10406a2581929cb5707ce90379857e3'/>
<id>38436802c10406a2581929cb5707ce90379857e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Attr_List Extension now support attr_lists on nested lists.</title>
<updated>2013-06-17T03:21:40+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-06-17T02:24:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=ea4af0db29a86466e4b8b9e694299054565a29ca'/>
<id>ea4af0db29a86466e4b8b9e694299054565a29ca</id>
<content type='text'>
A list item with a nested list complicates were the attr_list can be.

Fixes #218. Thanks for the report @jpzimmer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A list item with a nested list complicates were the attr_list can be.

Fixes #218. Thanks for the report @jpzimmer.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed wikilinks extension's handling of config setting. Not sure how I didn't notice the tests were failing for this before.</title>
<updated>2013-06-17T01:30:51+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-06-17T01:30:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=ccc9c3ec580cb93aeed81b8320746c164a7acdb5'/>
<id>ccc9c3ec580cb93aeed81b8320746c164a7acdb5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improved codehilite docs. Document `css_class` setting.</title>
<updated>2013-06-17T01:11:01+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-06-17T01:11:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=c908b0463b17919c935944e49e282fec16ca5bf0'/>
<id>c908b0463b17919c935944e49e282fec16ca5bf0</id>
<content type='text'>
Also cleaned up poor wording on other setting for codehilite.

Thanks for the inital suggestion @davidcorne. Fixes #223.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also cleaned up poor wording on other setting for codehilite.

Thanks for the inital suggestion @davidcorne. Fixes #223.
</pre>
</div>
</content>
</entry>
<entry>
<title>AbbrExtension now handles abbreviations nested in other markup.</title>
<updated>2013-06-17T00:54:44+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-06-17T00:54:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=bf0791a5687a4c1248d69ce040620b3bb79a95ac'/>
<id>bf0791a5687a4c1248d69ce040620b3bb79a95ac</id>
<content type='text'>
Just set each abreviation as an AtomicString. Given the nature of
abbreviations, they are not likely to ever contain any other markup
anyway. Also added a test.

Fixes #224. Thanks for the report @JakeChampion.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just set each abreviation as an AtomicString. Given the nature of
abbreviations, they are not likely to ever contain any other markup
anyway. Also added a test.

Fixes #224. Thanks for the report @JakeChampion.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #216. WikiLink Extension actually accepts configs.</title>
<updated>2013-05-19T19:19:53+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-05-19T19:19:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=f37e3b99e41ceec54684c67538665d19687478c3'/>
<id>f37e3b99e41ceec54684c67538665d19687478c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
