<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/docs, branch issue712</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>Bump version to 3.0</title>
<updated>2018-09-22T02:02:04+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2018-09-21T19:19:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=41dde4f4b3c6d2eba46ae0e3c6cd595dbdb61466'/>
<id>41dde4f4b3c6d2eba46ae0e3c6cd595dbdb61466</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support custom labels in TOC. (#700)</title>
<updated>2018-09-05T19:54:16+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2018-09-05T19:54:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=f51125d01b88067d8523e9706cfa4558b3808222'/>
<id>f51125d01b88067d8523e9706cfa4558b3808222</id>
<content type='text'>
New `toc_tokens` attribute on Markdown class.
Contains the raw tokens used to build the Table of Contents. Users can 
use this to build their own custom Table of Contents rather than needing 
to parse the HTML available on the `toc` attribute of the Markdown 
class.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New `toc_tokens` attribute on Markdown class.
Contains the raw tokens used to build the Table of Contents. Users can 
use this to build their own custom Table of Contents rather than needing 
to parse the HTML available on the `toc` attribute of the Markdown 
class.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update 3.0 release notes</title>
<updated>2018-08-03T23:18:34+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2018-08-02T18:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=833574a9da27874614f7184f85f7993a539f3df1'/>
<id>833574a9da27874614f7184f85f7993a539f3df1</id>
<content type='text'>
And other docs cleanup.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And other docs cleanup.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add toc_depth parameter to toc extension</title>
<updated>2018-07-24T19:07:14+00:00</updated>
<author>
<name>Jesús Fernández</name>
<email>fernandez.cuesta@gmail.com</email>
</author>
<published>2015-09-01T15:29:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a9f1171d3bd7908fbcfd3df0b7b36c9dd7c4607c'/>
<id>a9f1171d3bd7908fbcfd3df0b7b36c9dd7c4607c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add the possibility to set additional classes</title>
<updated>2018-07-24T18:42:42+00:00</updated>
<author>
<name>WhiteWinterWolf</name>
<email>github@whitewinterwolf.com</email>
</author>
<published>2017-09-08T11:45:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=67bb12b3e508b389f18efb6a992cc390680a7235'/>
<id>67bb12b3e508b389f18efb6a992cc390680a7235</id>
<content type='text'>
Additional CSS classes names can be appended to the admonition name
using spaces as separators.

The following markdown:

    !!! note floatright
        This is a floating note.

Generates the following HTML code:

    &lt;div class="admonition note floatright"&gt;
        &lt;p class="admonition-title"&gt;Note&lt;/p&gt;
        &lt;p&gt;This is a floating note.&lt;/p&gt;
    &lt;/div&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Additional CSS classes names can be appended to the admonition name
using spaces as separators.

The following markdown:

    !!! note floatright
        This is a floating note.

Generates the following HTML code:

    &lt;div class="admonition note floatright"&gt;
        &lt;p class="admonition-title"&gt;Note&lt;/p&gt;
        &lt;p&gt;This is a floating note.&lt;/p&gt;
    &lt;/div&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved enable_attributes keyword to extension: legacy_attrs.</title>
<updated>2018-07-24T15:40:13+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=ee54678185234f01d3de6a6334f30c9bb3417783'/>
<id>ee54678185234f01d3de6a6334f30c9bb3417783</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.
Closes #643. Work adapted from 0005d7a of the md3 branch.
</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.
Closes #643. Work adapted from 0005d7a of the md3 branch.
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fix in nl2br.md (#673)</title>
<updated>2018-06-23T17:25:06+00:00</updated>
<author>
<name>Vyacheslav Matyukhin</name>
<email>me@berekuk.ru</email>
</author>
<published>2018-06-23T17:25:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=d54e09419990b9d96196eaca60f8b31aebeb0a45'/>
<id>d54e09419990b9d96196eaca60f8b31aebeb0a45</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix formatting in fenced code block example</title>
<updated>2018-06-05T13:02:39+00:00</updated>
<author>
<name>Dmitry Shachnev</name>
<email>mitya57@gmail.com</email>
</author>
<published>2018-06-05T13:02:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=d321e798228f6db61d0d477b756a34a8f1d5b8d0'/>
<id>d321e798228f6db61d0d477b756a34a8f1d5b8d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos</title>
<updated>2018-02-17T20:15:56+00:00</updated>
<author>
<name>Jakub Wilk</name>
<email>jwilk@jwilk.net</email>
</author>
<published>2018-02-17T09:58:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=b0e993a23ab96562d9e0e86fcba715c9d8b9ffcf'/>
<id>b0e993a23ab96562d9e0e86fcba715c9d8b9ffcf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify output_formats to html and xhtml.</title>
<updated>2018-01-25T19:04:09+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2015-03-29T01:48:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8c0698b013edeb82586290e637df7c30ede81b5a'/>
<id>8c0698b013edeb82586290e637df7c30ede81b5a</id>
<content type='text'>
We started with the numbers before HTML5 was a thing and we thought
there might be an XHTML2. Today, we know that all we have are HTML style
tags and XHTML style tags. Nothing else really matters in the real
world.

Note that if '(x)html1' '(x)html4' or '(x)html5' are passed in, the
number is stripped/ignored. Users shouldn't need to change their code
for this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We started with the numbers before HTML5 was a thing and we thought
there might be an XHTML2. Today, we know that all we have are HTML style
tags and XHTML style tags. Nothing else really matters in the real
world.

Note that if '(x)html1' '(x)html4' or '(x)html5' are passed in, the
number is stripped/ignored. Users shouldn't need to change their code
for this.
</pre>
</div>
</content>
</entry>
</feed>
