<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git, branch 2.5.2-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>Upped version to 2.5.2.</title>
<updated>2014-11-20T02:07:54+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-11-20T02:07:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a9195fd2261d8a29762f7d8fc34b520c94fd09ec'/>
<id>a9195fd2261d8a29762f7d8fc34b520c94fd09ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #371 from facelessuser/master</title>
<updated>2014-11-20T02:00:36+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-11-20T02:00:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=c2498b92236afceae77f51343086c6a8d4350f4a'/>
<id>c2498b92236afceae77f51343086c6a8d4350f4a</id>
<content type='text'>
Issue #368: Fix Markdown in raw HTML stops working</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue #368: Fix Markdown in raw HTML stops working</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #368: Fix Markdown in raw HTML stops working</title>
<updated>2014-11-20T01:21:40+00:00</updated>
<author>
<name>facelessuser</name>
<email>faceless.shop@gmail.com</email>
</author>
<published>2014-11-20T01:21:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5d913699758a5815bc114a9e8c08db61eb206a5d'/>
<id>5d913699758a5815bc114a9e8c08db61eb206a5d</id>
<content type='text'>
Originally there was an infinite loop issue that was patched in issue
#308.  Unfortunately, it was fixed all the way.  This fix patches the
infinite loop fix to only add an offset to the `right_listindex` when
it is in a infinite loop scenario.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Originally there was an infinite loop issue that was patched in issue
#308.  Unfortunately, it was fixed all the way.  This fix patches the
infinite loop fix to only add an offset to the `right_listindex` when
it is in a infinite loop scenario.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #367 from facelessuser/master</title>
<updated>2014-11-18T03:43:23+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-11-18T03:43:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=ed0ff55087235db8a3f02e10d6a1ed603ef4c476'/>
<id>ed0ff55087235db8a3f02e10d6a1ed603ef4c476</id>
<content type='text'>
Fix issue #365 and #366</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix issue #365 and #366</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #366 Recursion error in toc ext</title>
<updated>2014-11-18T01:44:08+00:00</updated>
<author>
<name>facelessuser</name>
<email>faceless.shop@gmail.com</email>
</author>
<published>2014-11-18T01:44:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=69fd8b4871f3c027b78072af88bb8a62202bc7e7'/>
<id>69fd8b4871f3c027b78072af88bb8a62202bc7e7</id>
<content type='text'>
This reworks the toc ordering to be done in a single pass with no
recursion.  Very long documents with lots of headers can actually
exceed Python’s max recursion limit.  By handling the toc ordering with
no recursion, large documents can no longer cause toc to fail with
recursion erros.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reworks the toc ordering to be done in a single pass with no
recursion.  Very long documents with lots of headers can actually
exceed Python’s max recursion limit.  By handling the toc ordering with
no recursion, large documents can no longer cause toc to fail with
recursion erros.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #365 Bold/Italic nesting fix</title>
<updated>2014-11-18T01:36:43+00:00</updated>
<author>
<name>facelessuser</name>
<email>faceless.shop@gmail.com</email>
</author>
<published>2014-11-18T01:36:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=609faad76b80ff10da0e471183ad0cede3221571'/>
<id>609faad76b80ff10da0e471183ad0cede3221571</id>
<content type='text'>
The logic for the current regex for strong/em and em/strong was sound,
but the way it was implemented caused some unintended side effects.
Whether it is a quirk with regex in general or just with Python’s re
engine, I am not sure.  Put basically `(\*|_){3}`  causes issues with
nested bold/italic. So, allowing the group to be defined, and then
using the group number to specify the remaining sequential chars is a
better way that works more reliably `(\*|_)\2{2}.  Test from issue #365
was also added to check for this case in the future.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The logic for the current regex for strong/em and em/strong was sound,
but the way it was implemented caused some unintended side effects.
Whether it is a quirk with regex in general or just with Python’s re
engine, I am not sure.  Put basically `(\*|_){3}`  causes issues with
nested bold/italic. So, allowing the group to be defined, and then
using the group number to specify the remaining sequential chars is a
better way that works more reliably `(\*|_)\2{2}.  Test from issue #365
was also added to check for this case in the future.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make TestCodeHilite tests working with Pygments 2.0rc1.</title>
<updated>2014-11-04T16:02:57+00:00</updated>
<author>
<name>Dmitry Shachnev</name>
<email>mitya57@gmail.com</email>
</author>
<published>2014-11-04T16:02:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=f0357b28ef1723929146eabe6571d7c436c90c34'/>
<id>f0357b28ef1723929146eabe6571d7c436c90c34</id>
<content type='text'>
Fixes #361.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #361.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated nl2br example in docs.</title>
<updated>2014-10-28T23:50:20+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-10-28T23:50:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=0f008f7c7dbd9b98c82d1c50337b8b8ffe486dec'/>
<id>0f008f7c7dbd9b98c82d1c50337b8b8ffe486dec</id>
<content type='text'>
Fixes #359. Thanks for the report @gremmie.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #359. Thanks for the report @gremmie.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #360 from topless/patch-1</title>
<updated>2014-10-24T16:24:59+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-10-24T16:24:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=b5990e05c38ea2757098b8d7e2f6f8de0937a8c2'/>
<id>b5990e05c38ea2757098b8d7e2f6f8de0937a8c2</id>
<content type='text'>
Changed logging level when loading extensions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changed logging level when loading extensions</pre>
</div>
</content>
</entry>
<entry>
<title>Changed logging level when loading extensions</title>
<updated>2014-10-24T12:23:58+00:00</updated>
<author>
<name>Chris Topaloudis</name>
<email>topless@gmail.com</email>
</author>
<published>2014-10-24T12:23:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=89f3a909833755bf6e94d0e630f100c911cdd9b1'/>
<id>89f3a909833755bf6e94d0e630f100c911cdd9b1</id>
<content type='text'>
So it suppresses messages for loaded extensions when its used as third party.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So it suppresses messages for loaded extensions when its used as third party.</pre>
</div>
</content>
</entry>
</feed>
