/usr/share/doc/python-markdown-doc/docs/release-2.2.0.html is in python-markdown-doc 2.6.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | <!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Release Notes for v2.2.0 — Python Markdown</title>
<link rel="stylesheet" href="default.css" type="text/css">
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="siteindex.html" title="General Index">index</a></li>
<li class="right">
<a href="release-2.1.1.html" title="Release Notes for v2.1.1"
accesskey="N">next</a> |</li>
<li class="right">
<a href="release-2.2.1.html" title="Release Notes for v2.2.1"
accesskey="P">previous</a> |</li>
<li><img src="py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="index.html">Python Markdown v2.6.9 documentation</a> »</li>
<li><a href="release-2.2.0.html">Release Notes for v2.2.0</a> »</li>
</ul>
</div> <!-- .related -->
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<h1 id="python-markdown-220-release-notes">Python-Markdown 2.2.0 Release Notes<a class="headerlink" href="#python-markdown-220-release-notes" title="Permanent link">¶</a></h1>
<p>We are pleased to release Python-Markdown 2.2 which makes improvements on 2.1.
While 2.2 is primarily a bug fix release, some internal improvements were made
to the parser, and a few security issues were resolved.</p>
<p>Python-Markdown supports Python versions 2.5, 2.6, 2.7, 3.1, and 3.2 out
of the box. </p>
<h2 id="backwards-incompatible-changes">Backwards-incompatible Changes<a class="headerlink" href="#backwards-incompatible-changes" title="Permanent link">¶</a></h2>
<p>While Python-Markdown has received only minor internal changes since the last
release, there are a few backward-incompatible changes to note:</p>
<ul>
<li>
<p>Support had been dropped for Python 2.4. No guarantees are made that the
library will work in any version of Python lower than 2.5. Additionally, while
the library had been tested with Python 2.5, consider Python 2.5 support to be
depreciated. It is not likely that any future versions will continue to support
any version of Python less than 2.6.</p>
</li>
<li>
<p>For many years Python-Markdown has identified <code><ins></code> and <code><del></code> tags in
raw HTML input as block level tags. As they are actually inline level tags,
this behavior has been changed. This may result in slightly different output.
While in most cases, the new output is more correct, there may be a few edge
cases where a document author has relied on the previous incorrect behavior.
It is likely that a few adjustments may need to be made to those documents.</p>
</li>
<li>
<p>The behavior of the <code>enable_attributes</code> keyword has been slightly altered.
If authors have been using attributes in documents with <code>safe_mode</code> on, those
attributes will no longer be parsed unless <code>enable_attributes</code> is explicitly
set to <code>True</code>. This change was made to prevent untrusted authors from injecting
potentially harmful JavaScript in documents. This change had no effect when
not in <code>safe_mode</code>.</p>
</li>
</ul>
<h2 id="whats-new-in-python-markdown-21">What’s New in Python-Markdown 2.1<a class="headerlink" href="#whats-new-in-python-markdown-21" title="Permanent link">¶</a></h2>
<p>The docs were refactored and can now be found at
<a href="http://packages.python.org/Markdown/">http://packages.python.org/Markdown/</a>. The docs are now maintained in the
Repository and are generated by the <code>setup.py build_docs</code> command.</p>
<p>The <a href="http://packages.python.org/Markdown/extensions/sane_lists.html">Sane_Lists</a>
extension was added. The Sane Lists Extension alters the behavior of the
Markdown List syntax to be less surprising by not allowing the mixing of list
types. In other words, an ordered list will not continue when an unordered list
item is encountered and vice versa.</p>
<p>Markdown now excepts a full path to an extension module. In other words, your
extensions no longer need to be in the primary namespace (and start with <code>mdx_</code>)
for Markdown to find them. Just do <code>Markdown(extension=['path.to.some.module'])</code>.
As long as the provided module contains a compatible extension, the extension
will be loaded.</p>
<p>The BlockParser API was slightly altered to allow <code>blockprocessor.run</code> to return
<code>True</code> or <code>False</code> which provides more control to the block processor loop from
within any Blockprocessor instance.</p>
<p>Various bug fixes have been made. See the
<a href="https://github.com/Python-Markdown/markdown/commits/master">commit log</a>
for a complete history of the changes.</p>
</div> <!-- .body -->
</div> <!-- .bodywrapper -->
</div> <!-- .documentwrapper -->
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3>Table Of Contents</h3>
<div class="toc">
<ul>
<li><a href="#python-markdown-220-release-notes">Python-Markdown 2.2.0 Release Notes</a><ul>
<li><a href="#backwards-incompatible-changes">Backwards-incompatible Changes</a></li>
<li><a href="#whats-new-in-python-markdown-21">What's New in Python-Markdown 2.1</a></li>
</ul>
</li>
</ul>
</div>
<h4>Previous topic</h4>
<p class="topless"><a href="release-2.2.1.html"
title="previous chapter">Release Notes for v2.2.1</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="release-2.1.1.html"
title="next chapter">Release Notes for v2.1.1</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="https://github.com/Python-Markdown/markdown/issues"
>Report a Bug</a></li>
<li><a href="release-2.2.0.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div> <!-- .sphinxsidebarwrapper -->
</div> <!-- .sphinxsidebar -->
<div class="clearer"></div>
</div> <!-- .document -->
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="siteindex.html" title="General Index">index</a></li>
<li class="right">
<a href="release-2.1.1.html" title="Release Notes for v2.1.1"
accesskey="N">next</a> |</li>
<li class="right">
<a href="release-2.2.1.html" title="Release Notes for v2.2.1"
accesskey="P">previous</a> |</li>
<li><img src="py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="index.html">Python Markdown v2.6.9 documentation</a> »</li>
<li><a href="release-2.2.0.html">Release Notes for v2.2.0</a> »</li>
</ul>
</div> <!-- .related -->
<div class="footer">© 2010-2012 Python Markdown Project</div>
</body>
</html>
|