This file is indexed.

/usr/share/doc/python-markdown-doc/docs/extensions/header_id.html is in python-markdown-doc 2.5.1-2.

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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>HeaderId Extension &#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="meta_data.html" title="Meta-Data Extension"
         accesskey="N">next</a> |</li>
    <li class="right">
      <a href="code_hilite.html" title="CodeHilite Extension"
         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.5.1 documentation</a> &raquo;</li>
    <li><a href="index.html">Extensions</a> &raquo;</li>
<li><a href="header_id.html">HeaderId Extension</a> &raquo;</li>
  </ul>
</div> <!-- .related -->

<div class="document">
  <div class="documentwrapper">
    <div class="bodywrapper">
      <div class="body">
<h1 id="headerid">HeaderId<a class="headerlink" href="#headerid" title="Permanent link">&para;</a></h1>
<h2 id="summary">Summary<a class="headerlink" href="#summary" title="Permanent link">&para;</a></h2>
<p>The HeaderId extension automatically generates <code>id</code> attributes for the header
elements (<code>h1</code>-<code>h6</code>) in the resulting HTML document.</p>
<p>This extension is included in the standard Markdown library.</p>
<h2 id="syntax">Syntax<a class="headerlink" href="#syntax" title="Permanent link">&para;</a></h2>
<p>By default, all headers will automatically have unique <code>id</code> attributes 
generated based upon the text of the header (see below to turn this off). 
Note this example, in which all three headers would have the same <code>id</code>:</p>
<pre><code>#Header
#Header
#Header
</code></pre>
<p>Results in:</p>
<pre><code>&lt;h1 id="header"&gt;Header&lt;/h1&gt;
&lt;h1 id="header_1"&gt;Header&lt;/h1&gt;
&lt;h1 id="header_2"&gt;Header&lt;/h1&gt;
</code></pre>
<h2 id="usage">Usage<a class="headerlink" href="#usage" title="Permanent link">&para;</a></h2>
<p>See <a href="index.html">Extensions</a> for general extension usage, specify <code>markdown.extensions.headerid</code>
as the name of the extension.</p>
<p>See the <a href="../reference.html#extensions">Library Reference</a> for information about
configuring extensions.</p>
<p>The following options are provided to configure the output:</p>
<ul>
<li>
<p><strong><code>level</code></strong>: Base level for headers.</p>
<p>Default: <code>1</code></p>
<p>The <code>level</code> setting allows you to automatically adjust the header levels to
fit within the hierarchy of your html templates. For example, suppose the 
markdown text for a page should not contain any headers higher than level 3
(<code>&lt;h3&gt;</code>). The following will accomplish that:</p>
<pre><code>&gt;&gt;&gt;  text = '''
... #Some Header
... ## Next Level'''
&gt;&gt;&gt; from markdown.extensions.headerid import HeaderIdExtension
&gt;&gt;&gt; html = markdown.markdown(text, extensions=[HeaderIdExtension(level=3)])
&gt;&gt;&gt; print html
&lt;h3 id="some_header"&gt;Some Header&lt;/h3&gt;
&lt;h4 id="next_level"&gt;Next Level&lt;/h4&gt;'
</code></pre>
</li>
<li>
<p><strong><code>forceid</code></strong>: Force all headers to have an id.</p>
<p>Default: <code>True</code></p>
<p>The <code>forceid</code> setting turns on or off the automatically generated ids for 
headers that do not have one explicitly defined (using the
<a href="attr_list.html">Attribute List</a> extension).</p>
<pre><code>&gt;&gt;&gt; text = '''
... # Some Header
... # Header with ID # { #foo }'''
&gt;&gt;&gt; html = markdown.markdown(text, 
                extensions=['attr_list', HeaderIdExtension(forceid=False)])
&gt;&gt;&gt; print html
&lt;h1&gt;Some Header&lt;/h1&gt;
&lt;h1 id="foo"&gt;Header with ID&lt;/h1&gt;
</code></pre>
</li>
<li>
<p><strong><code>separator</code></strong>: Word separator. Character which replaces whitespace in id.</p>
<p>Default: <code>-</code></p>
</li>
<li>
<p><strong><code>slugify</code></strong>: Callable to generate anchors.</p>
<p>Default: <code>markdown.extensions.headerid.slugify</code></p>
<p>If you would like to use a different algorithm to define the ids, you can
pass in a callable which takes two arguments:</p>
<ul>
<li><code>value</code>: The string to slugify.</li>
<li><code>separator</code>: The Word Separator.</li>
</ul>
</li>
</ul>
<h2 id="using-with-meta-data">Using with Meta-Data<a class="headerlink" href="#using-with-meta-data" title="Permanent link">&para;</a></h2>
<p>The HeaderId extension also supports the <a href="meta_data.html">Meta-Data</a> extension.
Please see the documentation for that extension for specifics. The supported 
meta-data keywords are:</p>
<ul>
<li><code>header_level</code></li>
<li><code>header_forceid</code></li>
</ul>
<p>When used, the meta-data will override the settings provided through the<br />
<code>extension_configs</code> interface. </p>
<p>This document:</p>
<pre><code>header_level: 2
header_forceid: Off

# A Header
</code></pre>
<p>Will result in the following output:</p>
<pre><code>&lt;h2&gt;A Header&lt;/h2&gt;
</code></pre>
      </div> <!-- .body -->
    </div> <!-- .bodywrapper -->
  </div> <!-- .documentwrapper -->

  <div class="sphinxsidebar">
    <div class="sphinxsidebarwrapper">
    <h3>Table Of Contents</h3>
    <div class="toc">
<ul>
<li><a href="#headerid">HeaderId</a><ul>
<li><a href="#summary">Summary</a></li>
<li><a href="#syntax">Syntax</a></li>
<li><a href="#usage">Usage</a></li>
<li><a href="#using-with-meta-data">Using with Meta-Data</a></li>
</ul>
</li>
</ul>
</div>


    <h4>Previous topic</h4>
      <p class="topless"><a href="code_hilite.html"
         title="previous chapter">CodeHilite Extension</a></p>
    <h4>Next topic</h4>
      <p class="topless"><a href="meta_data.html"
         title="next chapter">Meta-Data Extension</a></p>
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="https://github.com/waylan/Python-Markdown/issues"
             >Report a Bug</a></li>
      <li><a href="header_id.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="meta_data.html" title="Meta-Data Extension"
         accesskey="N">next</a> |</li>
    <li class="right">
      <a href="code_hilite.html" title="CodeHilite Extension"
         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.5.1 documentation</a> &raquo;</li>
    <li><a href="index.html">Extensions</a> &raquo;</li>
<li><a href="header_id.html">HeaderId Extension</a> &raquo;</li>
  </ul>
</div> <!-- .related -->

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