<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/docs/reference.txt, 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>Mark "Safe Mode" as pending deprecation.</title>
<updated>2014-09-01T21:30:59+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2014-09-01T21:30:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=7db56daedf8a6006222f55eeeab748e7789fba89'/>
<id>7db56daedf8a6006222f55eeeab748e7789fba89</id>
<content type='text'>
Both `safe_mode` and `html_replacement_test` keywords are
pending deprecation, as are positional args. Closes #337.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both `safe_mode` and `html_replacement_test` keywords are
pending deprecation, as are positional args. Closes #337.
</pre>
</div>
</content>
</entry>
<entry>
<title>Some docs cleanup.</title>
<updated>2014-08-30T02:18:10+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2014-08-30T02:18:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5f941454f9f7c8b62efec24917b2c7ba983d603c'/>
<id>5f941454f9f7c8b62efec24917b2c7ba983d603c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark special treatment of extension names as PendingDeprecation</title>
<updated>2014-08-30T00:00:39+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2014-08-30T00:00:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=9a5b11116e2ea8a240fa2d03cad9de334023da9d'/>
<id>9a5b11116e2ea8a240fa2d03cad9de334023da9d</id>
<content type='text'>
The builtin extensions will no longer get special treatment and have
the path ("markdown.extensions.") appended . The same applies for
"mdx_" extensions. All names extension must provide the full path.
Fixes #336.

Also deprecating support for passing in extension config settings
as part of the string name. The extension_configs keyword should
be used instead. Fixes #335.

Also raising PendingDeprecationWarnings for positional args or the
"config" keyword on the Extension Class. Pass each setting as a
seperate keyword instead.

Docs and tests are updated. Still need to update extension API docs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The builtin extensions will no longer get special treatment and have
the path ("markdown.extensions.") appended . The same applies for
"mdx_" extensions. All names extension must provide the full path.
Fixes #336.

Also deprecating support for passing in extension config settings
as part of the string name. The extension_configs keyword should
be used instead. Fixes #335.

Also raising PendingDeprecationWarnings for positional args or the
"config" keyword on the Extension Class. Pass each setting as a
seperate keyword instead.

Docs and tests are updated. Still need to update extension API docs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update lib reference docs to reflect that extension_configs accepts dicts. Related to #325</title>
<updated>2014-08-20T19:02:28+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-08-20T19:02:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=691d2918e7e9b23dfd9e98e78caa2b0ad611d690'/>
<id>691d2918e7e9b23dfd9e98e78caa2b0ad611d690</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update reference docs for recent Extension.__init__ refactor.</title>
<updated>2014-08-02T01:12:31+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2014-08-02T01:12:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=bf4a2c69349320666b39d049bf7cef782334b9b4'/>
<id>bf4a2c69349320666b39d049bf7cef782334b9b4</id>
<content type='text'>
Noted that using keywords it the prefered method of passing config options to extensions. Also updated the example sto demonstrate the new prefered way as discussed in #325.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Noted that using keywords it the prefered method of passing config options to extensions. Also updated the example sto demonstrate the new prefered way as discussed in #325.</pre>
</div>
</content>
</entry>
<entry>
<title>Emphasized proper use of reset method in docs.</title>
<updated>2014-04-19T18:36:44+00:00</updated>
<author>
<name>John Sullivan</name>
<email>johnsullivan@khanacademy.org</email>
</author>
<published>2014-04-19T18:36:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=9a2211a0447f8b3e019e47ca23b4648f9c321258'/>
<id>9a2211a0447f8b3e019e47ca23b4648f9c321258</id>
<content type='text'>
This is related to waylan/Python-Markdown#305.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is related to waylan/Python-Markdown#305.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in reference.txt</title>
<updated>2014-03-03T20:14:39+00:00</updated>
<author>
<name>Martin Maillard</name>
<email>self@martin-maillard.com</email>
</author>
<published>2014-03-03T20:14:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=26b809b9e08255a8f2b19b7057efbb62b0fc1dfa'/>
<id>26b809b9e08255a8f2b19b7057efbb62b0fc1dfa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>typo</title>
<updated>2014-02-11T08:00:37+00:00</updated>
<author>
<name>Mark Eichin</name>
<email>eichin-github@thok.org</email>
</author>
<published>2014-02-11T08:00:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=2a4beaae363cd6d2d73f5717185c5a8a24e25e14'/>
<id>2a4beaae363cd6d2d73f5717185c5a8a24e25e14</id>
<content type='text'>
chaining calls, not changing calls</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
chaining calls, not changing calls</pre>
</div>
</content>
</entry>
<entry>
<title>Update reference.txt</title>
<updated>2013-10-23T22:32:58+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-10-23T22:32:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=03029616a9f40b4e8affab981818e47a9507acd9'/>
<id>03029616a9f40b4e8affab981818e47a9507acd9</id>
<content type='text'>
Fixed #261. Thanks for the report @mpvharmelen.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed #261. Thanks for the report @mpvharmelen.</pre>
</div>
</content>
</entry>
<entry>
<title>Various changes to docs for updated changes, clarity, and to fix typos.</title>
<updated>2013-02-19T21:33:36+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2013-02-19T21:33:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8aa2fc7b5138fd97ded7dd1e70103532a9fd6583'/>
<id>8aa2fc7b5138fd97ded7dd1e70103532a9fd6583</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
