<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/tests, branch waylan-patch-1</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>Better handling of backticks in tables (#524)</title>
<updated>2017-01-11T16:19:06+00:00</updated>
<author>
<name>Isaac Muse</name>
<email>faceless.shop@gmail.com</email>
</author>
<published>2017-01-11T16:19:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=dda33114ad36e2b1ca4d526f71787ba3414b9da7'/>
<id>dda33114ad36e2b1ca4d526f71787ba3414b9da7</id>
<content type='text'>
At some point the logic of counting backticks and determining if they are odd or even was used to parse a row's text into cells. Unfortunately this approach broke expected code parsing logic in a table. We essentially traded one bug for another. This fixes table backtick handling and restores sane backtick logic while preserving existing fixes. (issue #449)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At some point the logic of counting backticks and determining if they are odd or even was used to parse a row's text into cells. Unfortunately this approach broke expected code parsing logic in a table. We essentially traded one bug for another. This fixes table backtick handling and restores sane backtick logic while preserving existing fixes. (issue #449)
</pre>
</div>
</content>
</entry>
<entry>
<title>lists are not tables - fixes #478 (#507)</title>
<updated>2016-10-26T17:17:38+00:00</updated>
<author>
<name>Adam Wood</name>
<email>adam.michael.wood@gmail.com</email>
</author>
<published>2016-10-26T17:17:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=0244474b2dbf15986891a8d700c7bb121dc6f55f'/>
<id>0244474b2dbf15986891a8d700c7bb121dc6f55f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>No need to test the same thing twice.</title>
<updated>2016-09-24T00:00:54+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2016-09-24T00:00:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5881ae5235de7e8d57703aa33f49ed5fe7b79fee'/>
<id>5881ae5235de7e8d57703aa33f49ed5fe7b79fee</id>
<content type='text'>
Related to #498.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related to #498.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of https://github.com/waylan/Python-Markdown</title>
<updated>2016-09-23T23:36:40+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2016-09-23T23:36:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8384d26981572cf500021e826a67164d69c5d75f'/>
<id>8384d26981572cf500021e826a67164d69c5d75f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't allow equal signs in attr_list keys.</title>
<updated>2016-09-23T23:33:56+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2016-09-23T23:33:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=4747cf794b03920153a10ee7a8dd53011bf4802f'/>
<id>4747cf794b03920153a10ee7a8dd53011bf4802f</id>
<content type='text'>
This will probably not result in the output intending by the author, but
the syntax would be incorrect so the author needs to edit the document
anyway. We just need to ensure the parser does not crash here. Fixes #498.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This will probably not result in the output intending by the author, but
the syntax would be incorrect so the author needs to edit the document
anyway. We just need to ensure the parser does not crash here. Fixes #498.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix table alignment when seperator contains spaces (#489)</title>
<updated>2016-08-15T14:33:55+00:00</updated>
<author>
<name>eph</name>
<email>painy.eph@gmail.com</email>
</author>
<published>2016-08-15T14:33:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5f358c0d580bd409279cef1404e6460e7fe2156e'/>
<id>5f358c0d580bd409279cef1404e6460e7fe2156e</id>
<content type='text'>
* Fix table alignment when seperator contains spaces

eg. seperator like "------ |  :----- | :----: | -----: | ------"

* Update tests for table

* Delete the newline at the end of tables.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix table alignment when seperator contains spaces

eg. seperator like "------ |  :----- | :----: | -----: | ------"

* Update tests for table

* Delete the newline at the end of tables.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix image titles not following spec</title>
<updated>2016-07-27T02:28:18+00:00</updated>
<author>
<name>facelessuser</name>
<email>faceless.shop@gmail.com</email>
</author>
<published>2016-07-27T02:28:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=65170bf24268620598ef0d5a19aa945af5cb22f4'/>
<id>65170bf24268620598ef0d5a19aa945af5cb22f4</id>
<content type='text'>
Don’t allow spaces in image links.  This was also causing an issue
where any text following a space was treated as a title. Ref #484.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don’t allow spaces in image links.  This was also causing an issue
where any text following a space was treated as a title. Ref #484.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix another issue with attribute lists (with multiple ‘=’ signs)</title>
<updated>2016-06-13T15:19:31+00:00</updated>
<author>
<name>Dmitry Shachnev</name>
<email>mitya57@gmail.com</email>
</author>
<published>2016-06-13T15:19:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=4fc04c6477914e26d8164b65238435c891f00108'/>
<id>4fc04c6477914e26d8164b65238435c891f00108</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Attribute lists are not permitted to contain newlines. Fixes #482.</title>
<updated>2016-06-13T01:12:58+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2016-06-13T01:12:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a96fee0591de5f3b628503591d1cad9d23d26140'/>
<id>a96fee0591de5f3b628503591d1cad9d23d26140</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Test if fenced_code honors CodeHilite option use_pygments</title>
<updated>2016-04-11T09:34:43+00:00</updated>
<author>
<name>Martin Morgenstern</name>
<email>mail@mmorgenstern.net</email>
</author>
<published>2016-04-11T09:27:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=c5cd162cb6a071b9a6ef679571a5b1d80d46fde9'/>
<id>c5cd162cb6a071b9a6ef679571a5b1d80d46fde9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
