<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/markdown, branch issue253</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>Partial fix for #253.</title>
<updated>2013-09-27T00:32:10+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-09-27T00:32:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=884d25b7aad62478ae53eb9a3759bc2617959843'/>
<id>884d25b7aad62478ae53eb9a3759bc2617959843</id>
<content type='text'>
This actually fixes the immediate problem. The method on the inlinePattern
returns the correct subtree. However, for some reason, the parent element
of that subtree is later stripped of all content (perhaps by the
inlineplaceholder stuff). So, for example, given this input:

    ***foo** bar*

The inlinepattern returns:

    &lt;em&gt;&lt;strong&gt;foo&lt;/strong&gt; bar&lt;/em&gt;

However, later it is reduced to:

    &lt;em&gt;&lt;/em&gt;

Interestingly, this still works:

    ***foo***

Correctly becomes:

    &lt;strong&gt;&lt;em&gt;foo&lt;/em&gt;&lt;/strong&gt;

I'm guessing that the tail on the `em` tag in the first instance is tripping
things up some how.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This actually fixes the immediate problem. The method on the inlinePattern
returns the correct subtree. However, for some reason, the parent element
of that subtree is later stripped of all content (perhaps by the
inlineplaceholder stuff). So, for example, given this input:

    ***foo** bar*

The inlinepattern returns:

    &lt;em&gt;&lt;strong&gt;foo&lt;/strong&gt; bar&lt;/em&gt;

However, later it is reduced to:

    &lt;em&gt;&lt;/em&gt;

Interestingly, this still works:

    ***foo***

Correctly becomes:

    &lt;strong&gt;&lt;em&gt;foo&lt;/em&gt;&lt;/strong&gt;

I'm guessing that the tail on the `em` tag in the first instance is tripping
things up some how.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update __init__.py</title>
<updated>2013-09-26T07:25:00+00:00</updated>
<author>
<name>Mark Eichin</name>
<email>eichin-github@thok.org</email>
</author>
<published>2013-09-26T07:25:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=e8df97f9f8d23817cc8d4727fcc0a6bfdcdf9f30'/>
<id>e8df97f9f8d23817cc8d4727fcc0a6bfdcdf9f30</id>
<content type='text'>
spelling.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
spelling.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix: "AttributeError: 'dict_items' object has no attribute 'sort'"</title>
<updated>2013-09-11T17:21:57+00:00</updated>
<author>
<name>Lucas Clemente Vella</name>
<email>lvella@gmail.com</email>
</author>
<published>2013-09-11T17:21:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=df4e833b6e7d4aefb929eb962b063a5d6be13369'/>
<id>df4e833b6e7d4aefb929eb962b063a5d6be13369</id>
<content type='text'>
Happens on pip install with Python 3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Happens on pip install with Python 3.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix typo</title>
<updated>2013-09-04T07:12:57+00:00</updated>
<author>
<name>FND</name>
<email>FNDo@gmx.net</email>
</author>
<published>2013-09-04T07:12:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5125cf83e3bc0284bd93db2085e368cb1d00bd42'/>
<id>5125cf83e3bc0284bd93db2085e368cb1d00bd42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure each term on def list maintains its own loose status.</title>
<updated>2013-09-02T14:22:49+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-09-02T14:22:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=78506014eceb3400d2fee3b39653753fae80939a'/>
<id>78506014eceb3400d2fee3b39653753fae80939a</id>
<content type='text'>
Previously, the code was ignoring whether this was a new term when determining
whether the currect item should be loose or not. Fixes #243. Thanks for the
report @Anomareh.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the code was ignoring whether this was a new term when determining
whether the currect item should be loose or not. Fixes #243. Thanks for the
report @Anomareh.
</pre>
</div>
</content>
</entry>
<entry>
<title>Typo in util.py</title>
<updated>2013-08-24T19:33:32+00:00</updated>
<author>
<name>Grahack</name>
<email>christophegragnic@gmail.com</email>
</author>
<published>2013-08-24T19:33:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=47e4a79190613f32146b37efe4ab584d42f5c0e5'/>
<id>47e4a79190613f32146b37efe4ab584d42f5c0e5</id>
<content type='text'>
implemenation -&gt; implementation</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
implemenation -&gt; implementation</pre>
</div>
</content>
</entry>
<entry>
<title>Allow fenced_code to be configurable in subclasses.</title>
<updated>2013-08-19T23:04:06+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-08-19T23:04:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=018dd886d3500090dec57fcf0de92b91fa3201f0'/>
<id>018dd886d3500090dec57fcf0de92b91fa3201f0</id>
<content type='text'>
Not sure why I was using global variables here. Anyway. Fixed now.
Thanks to Andrew for pointing it out.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not sure why I was using global variables here. Anyway. Fixed now.
Thanks to Andrew for pointing it out.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added release notes for pending release of v2.4.</title>
<updated>2013-08-13T17:17:05+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-08-13T17:17:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=df657a917a6ad9c79ee5bf9e4a109282ed905c2a'/>
<id>df657a917a6ad9c79ee5bf9e4a109282ed905c2a</id>
<content type='text'>
Since adding the new smarty extension, the nex release it more than just a
bugfix release.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since adding the new smarty extension, the nex release it more than just a
bugfix release.
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecated CodeHilite's force_linenos config setting.</title>
<updated>2013-08-13T17:13:14+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-08-13T17:13:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=d1541a58118c0968a0572e36d1956b866c95b534'/>
<id>d1541a58118c0968a0572e36d1956b866c95b534</id>
<content type='text'>
It was previously marked pendingdeprecation in v2.3. Now deprecated.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It was previously marked pendingdeprecation in v2.3. Now deprecated.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extended headerid's rawHTML in id handling to toc ext.</title>
<updated>2013-08-11T12:35:15+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-08-11T12:35:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=72012c35273cef24b57af833cb38ac4cca6db98e'/>
<id>72012c35273cef24b57af833cb38ac4cca6db98e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
