<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cmark/test/normalize.py, branch master</title>
<subtitle>My own fork of cmark for commonmark conversion</subtitle>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/'/>
<entry>
<title>normalize.py: use html.escape instead of cgi.escape.</title>
<updated>2019-11-28T06:05:20+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2019-11-28T06:04:16+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=68c3a91166347a32a57fb81223750a63cfd92105'/>
<id>68c3a91166347a32a57fb81223750a63cfd92105</id>
<content type='text'>
Closes #313.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #313.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated spec.txt and normalize.py.</title>
<updated>2015-12-29T06:16:55+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-12-29T06:16:55+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=5cea66f5e271dc93285be2edd4e9d205ebcaf9b5'/>
<id>5cea66f5e271dc93285be2edd4e9d205ebcaf9b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Set convert_charrefs=False in normalize.py.</title>
<updated>2015-09-23T05:40:12+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-09-23T05:40:12+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=cc9c7677e66598ed2e93306a747253b2a5a9ec27'/>
<id>cc9c7677e66598ed2e93306a747253b2a5a9ec27</id>
<content type='text'>
This defeats the new default as of python 3.5, and allows
the script to work with python 3.5.

Closes #83.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This defeats the new default as of python 3.5, and allows
the script to work with python 3.5.

Closes #83.
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3.5 compatibility: add placeholder for HTMLParseError</title>
<updated>2015-09-21T00:15:52+00:00</updated>
<author>
<name>Zhiming Wang</name>
<email>zmwangx@gmail.com</email>
</author>
<published>2015-09-20T23:43:40+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=72aac53b5d04a6d8194fc53d2c5112f805298237'/>
<id>72aac53b5d04a6d8194fc53d2c5112f805298237</id>
<content type='text'>
HTMLParseError was removed in Python 3.5. Since it could never be thrown
in Python 3.5+, we simply define a placeholder when HTMLParseError
cannot be imported.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
HTMLParseError was removed in Python 3.5. Since it could never be thrown
in Python 3.5+, we simply define a placeholder when HTMLParseError
cannot be imported.
</pre>
</div>
</content>
</entry>
<entry>
<title>normalize.py:  don't collapse whitespace in pre contexts.</title>
<updated>2015-06-17T00:46:53+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-06-12T00:17:02+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=50d3b871ad9f63907c5b19bb478aae0b6c1247a4'/>
<id>50d3b871ad9f63907c5b19bb478aae0b6c1247a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated tests to use python3.</title>
<updated>2014-12-30T00:42:26+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-12-27T21:39:47+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=d1922eb6f17578774866a13fd5428cdd3bc2280d'/>
<id>d1922eb6f17578774866a13fd5428cdd3bc2280d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed normalization bug, added more doctests for normalization.</title>
<updated>2014-12-23T06:40:17+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-12-23T06:38:56+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=a8d97a098742413d0ffdc3602d1798df6e4f00a1'/>
<id>a8d97a098742413d0ffdc3602d1798df6e4f00a1</id>
<content type='text'>
* The tests test for removal of whitespace around block-level tags.
* Previously whitespace wasn't removed before an initial block-level
  tag; this commit fixes that.
* Also revised wording so it's clear that whitespace is removed
  on both sides of block-level tags.

Closes #246 in a slightly different way.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* The tests test for removal of whitespace around block-level tags.
* Previously whitespace wasn't removed before an initial block-level
  tag; this commit fixes that.
* Also revised wording so it's clear that whitespace is removed
  on both sides of block-level tags.

Closes #246 in a slightly different way.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added a few more doctests for HTML normalization (#245).</title>
<updated>2014-12-19T16:14:36+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-12-19T16:14:13+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=b28c97c9b8af266d4f12deb5febcf28807d9f5c6'/>
<id>b28c97c9b8af266d4f12deb5febcf28807d9f5c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed whitespace normalization (#245).</title>
<updated>2014-12-19T16:14:02+00:00</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-12-19T16:14:02+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=b5f809582e073a3b4cb31a167e03f18145a04249'/>
<id>b5f809582e073a3b4cb31a167e03f18145a04249</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Expose failure to normalize whitespaces</title>
<updated>2014-12-19T11:29:05+00:00</updated>
<author>
<name>Ciro Santilli</name>
<email>ciro.santilli@gmail.com</email>
</author>
<published>2014-12-19T09:47:11+00:00</published>
<link rel='alternate' type='text/html' href='http://ns2.complex-networks.net/cmark/commit/?id=1ac9a016f45d5453e8f53d1b53e48d6fc787b37a'/>
<id>1ac9a016f45d5453e8f53d1b53e48d6fc787b37a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
