<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/setup.py, branch utest</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>Switch docs to mkdocs</title>
<updated>2015-04-23T00:26:03+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-04-23T00:22:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=6f87b323e8a295b405056f5f5c37be2f111cde91'/>
<id>6f87b323e8a295b405056f5f5c37be2f111cde91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update download link to point to wheel file.</title>
<updated>2015-04-22T23:53:49+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-04-22T02:33:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=407b4e8920c0e42d3308488f052afda18db3130c'/>
<id>407b4e8920c0e42d3308488f052afda18db3130c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert to ext short names now that we use entry_points.</title>
<updated>2015-04-22T23:53:49+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-04-08T01:32:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=fa2f34ca655d53cbef88d610127a1fcb537fd434'/>
<id>fa2f34ca655d53cbef88d610127a1fcb537fd434</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>smart_emphasis keyword &gt; legacy_em extension.</title>
<updated>2015-04-22T23:53:49+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-04-08T01:01:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8dcfb14f705a92d134c3900cb344e3dd5df99d7b'/>
<id>8dcfb14f705a92d134c3900cb344e3dd5df99d7b</id>
<content type='text'>
The smart_strong extension has been removed and its behavior is now the
default (smart em and smart strong are the default). The legacy_em
extension restores legacy behavior.

This completes the removal of keywords.  All parser behavior is now modified
by extensions, not by keywords on the Markdown class.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The smart_strong extension has been removed and its behavior is now the
default (smart em and smart strong are the default). The legacy_em
extension restores legacy behavior.

This completes the removal of keywords.  All parser behavior is now modified
by extensions, not by keywords on the Markdown class.
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved enable_attributes keyword to extension: legacy_attrs.</title>
<updated>2015-04-22T23:53:48+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-30T03:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=0005d7a1c03faa89ccd8a4293741843afcdbbd9b'/>
<id>0005d7a1c03faa89ccd8a4293741843afcdbbd9b</id>
<content type='text'>
If you have existing documents that use the legacy attributes format,
then you should enable the legacy_attrs extension for those documents.
Everyone is encouraged to use the attr_list extension going forward.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If you have existing documents that use the legacy attributes format,
then you should enable the legacy_attrs extension for those documents.
Everyone is encouraged to use the attr_list extension going forward.
</pre>
</div>
</content>
</entry>
<entry>
<title>Seperated 'build_docs' command from 'build' command.</title>
<updated>2015-04-22T23:53:48+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-28T01:20:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=0b2de1de437614610715a3f387a99ced5bb9de03'/>
<id>0b2de1de437614610715a3f387a99ced5bb9de03</id>
<content type='text'>
The 'build' command never should have called 'build_docs'. It can
confuse users:

https://stackoverflow.com/questions/28387828/folders-installed-by-python-markdown

In fact, I have always run 'build_docs' seperately when I actually need to
build the docs. It serves no useful purpose as a subcommand of 'build'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'build' command never should have called 'build_docs'. It can
confuse users:

https://stackoverflow.com/questions/28387828/folders-installed-by-python-markdown

In fact, I have always run 'build_docs' seperately when I actually need to
build the docs. It serves no useful purpose as a subcommand of 'build'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaced scripts with 'console_scripts' entry points.</title>
<updated>2015-04-22T23:53:48+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-28T01:02:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=350bbc8054a277d32e43387a308d5c72e51bce19'/>
<id>350bbc8054a277d32e43387a308d5c72e51bce19</id>
<content type='text'>
The 'bin/markdown_py' script has been replaced with a 'markdown' entry point
and 'run_tests.py' with a 'mdtests' entry point.

The makefile uses 'python -m markdown.test' rather than 'mdtests' so it can run
even if the package is not installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'bin/markdown_py' script has been replaced with a 'markdown' entry point
and 'run_tests.py' with a 'mdtests' entry point.

The makefile uses 'python -m markdown.test' rather than 'mdtests' so it can run
even if the package is not installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use entry points to load extensions by name.</title>
<updated>2015-04-22T23:53:48+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-27T02:55:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=ae9c85f4a807fbf5f02436c698baf517aa3f167e'/>
<id>ae9c85f4a807fbf5f02436c698baf517aa3f167e</id>
<content type='text'>
All previously supported methods of loading an extension given a string
name have now been replaced with entry points. Extension classes must be
registered as entry points in the 'markdown.extensions' group to support
string names. The old module-level 'makeExtension' function is no longer
needed. In fact, multiple extensions could be defined in one module
and still use string names if entry points are defined pointing to
each Extension subclass.

All of the build-in extensions are now registered with names that
mimic their paths (using dot notation). That may change in the future.
It is expected that all extensions will use short names. We may support
both ('extra' &amp; 'markdown.extensions.extra') in the interim.

Also, all extension configs must now be dicts. Support for a list
of tuples has been removed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All previously supported methods of loading an extension given a string
name have now been replaced with entry points. Extension classes must be
registered as entry points in the 'markdown.extensions' group to support
string names. The old module-level 'makeExtension' function is no longer
needed. In fact, multiple extensions could be defined in one module
and still use string names if entry points are defined pointing to
each Extension subclass.

All of the build-in extensions are now registered with names that
mimic their paths (using dot notation). That may change in the future.
It is expected that all extensions will use short names. We may support
both ('extra' &amp; 'markdown.extensions.extra') in the interim.

Also, all extension configs must now be dicts. Support for a list
of tuples has been removed.
</pre>
</div>
</content>
</entry>
<entry>
<title>100% coverage of core.py and flake8 cleanup.</title>
<updated>2015-04-22T23:53:48+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-15T03:22:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=360c0f58a4599ae1dc08ab26ddd83b4c1fb1fd98'/>
<id>360c0f58a4599ae1dc08ab26ddd83b4c1fb1fd98</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed deprecated support for short extension names.</title>
<updated>2015-04-22T23:53:47+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-15T00:04:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8eb28a66ec84c7dbfbfb254a8da4b85ed3fc018e'/>
<id>8eb28a66ec84c7dbfbfb254a8da4b85ed3fc018e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
