This file is indexed.

/usr/share/doc/python-markdown-doc/docs/extensions/index.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Extensions &#8212; 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="extra.html" title="Extra Extension"
         accesskey="N">next</a> |</li>
    <li class="right">
      <a href="../cli.html" title="Command Line"
         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> &raquo;</li>
    <li><a href="index.html">Extensions</a> &raquo;</li>
  </ul>
</div> <!-- .related -->

<div class="document">
  <div class="documentwrapper">
    <div class="bodywrapper">
      <div class="body">
<h1 id="available-extensions">Available Extensions<a class="headerlink" href="#available-extensions" title="Permanent link">&para;</a></h1>
<p>Python Markdown offers a flexible extension mechanism, which makes it possible
to change and/or extend the behavior of the parser without having to edit the
actual source files.</p>
<p>To use an extension, pass it to markdown with the <code>extensions</code> keyword.</p>
<pre><code>markdown.markdown(some_text, extensions=[MyExtension(), 'path.to.my.ext', 'markdown.extensions.footnotes'])
</code></pre>
<p>See the <a href="../reference.html#extensions">Library Reference</a> for more details.</p>
<p>From the command line, specify an extension with the <code>-x</code> option. </p>
<pre><code>$ python -m markdown -x markdown.extensions.footnotes -x markdown.extensions.tables input.txt &gt; output.html
</code></pre>
<p>See the <a href="../cli.html">Command Line docs</a> or use the <code>--help</code> option for more details.</p>
<div class="admonition seealso">
<p class="admonition-title">See Also</p>
<p>If you would like to write your own extensions, see the
<a href="api.html">Extension API</a> for details.</p>
</div>
<h2 id="officially-supported-extensions">Officially Supported Extensions<a class="headerlink" href="#officially-supported-extensions" title="Permanent link">&para;</a></h2>
<p>The extensions listed below are included with (at least) the most recent release
and are officially supported by Python-Markdown. Any documentation is
maintained here and all bug reports should be made to the project. If you
have a typical install of Python-Markdown, these extensions are already
available to you using the &ldquo;name&rdquo; listed in the second column below.</p>
<table>
<thead>
<tr>
<th>Extension</th>
<th>&ldquo;Name&rdquo;</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="extra.html">Extra</a></td>
<td><code>markdown.extensions.extra</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="abbreviations.html">Abbreviations</a></td>
<td><code>markdown.extensions.abbr</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="attr_list.html">Attribute Lists</a></td>
<td><code>markdown.extensions.attr_list</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="definition_lists.html">Definition Lists</a></td>
<td><code>markdown.extensions.def_list</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="fenced_code_blocks.html">Fenced Code Blocks</a></td>
<td><code>markdown.extensions.fenced_code</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="footnotes.html">Footnotes</a></td>
<td><code>markdown.extensions.footnotes</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="tables.html">Tables</a></td>
<td><code>markdown.extensions.tables</code></td>
</tr>
<tr>
<td>&nbsp; &nbsp; <a href="smart_strong.html">Smart Strong</a></td>
<td><code>markdown.extensions.smart_strong</code></td>
</tr>
<tr>
<td><a href="admonition.html">Admonition</a></td>
<td><code>markdown.extensions.admonition</code></td>
</tr>
<tr>
<td><a href="code_hilite.html">CodeHilite</a></td>
<td><code>markdown.extensions.codehilite</code></td>
</tr>
<tr>
<td><a href="header_id.html">HeaderId</a></td>
<td><code>markdown.extensions.headerid</code></td>
</tr>
<tr>
<td><a href="meta_data.html">Meta-Data</a></td>
<td><code>markdown.extensions.meta</code></td>
</tr>
<tr>
<td><a href="nl2br.html">New Line to Break</a></td>
<td><code>markdown.extensions.nl2br</code></td>
</tr>
<tr>
<td><a href="sane_lists.html">Sane Lists</a></td>
<td><code>markdown.extensions.sane_lists</code></td>
</tr>
<tr>
<td><a href="smarty.html">SmartyPants</a></td>
<td><code>markdown.extensions.smarty</code></td>
</tr>
<tr>
<td><a href="toc.html">Table of Contents</a></td>
<td><code>markdown.extensions.toc</code></td>
</tr>
<tr>
<td><a href="wikilinks.html">WikiLinks</a></td>
<td><code>markdown.extensions.wikilinks</code></td>
</tr>
</tbody>
</table>
<h2 id="third-party-extensions">Third Party Extensions<a class="headerlink" href="#third-party-extensions" title="Permanent link">&para;</a></h2>
<p>Various individuals and/or organizations have developed extensions which they
have made available to the public. A <a href="https://github.com/Python-Markdown/markdown/wiki/Third-Party-Extensions">list of third party extensions</a>
is maintained on the wiki for your convenience. The Python-Markdown team
offers no official support for these extensions. Please see the developer of
each extension for support.</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="#available-extensions">Available Extensions</a><ul>
<li><a href="#officially-supported-extensions">Officially Supported Extensions</a></li>
<li><a href="#third-party-extensions">Third Party Extensions</a></li>
</ul>
</li>
</ul>
</div>


    <h4>Previous topic</h4>
      <p class="topless"><a href="../cli.html"
         title="previous chapter">Command Line</a></p>
    <h4>Next topic</h4>
      <p class="topless"><a href="extra.html"
         title="next chapter">Extra Extension</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="index.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="extra.html" title="Extra Extension"
         accesskey="N">next</a> |</li>
    <li class="right">
      <a href="../cli.html" title="Command Line"
         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> &raquo;</li>
    <li><a href="index.html">Extensions</a> &raquo;</li>
  </ul>
</div> <!-- .related -->

<div class="footer">&copy; 2010-2012 Python Markdown Project</div>
</body>
</html>