This file is indexed.

/usr/share/doc/python-markdown-doc/docs/extensions/nl2br.txt 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
title:      New Line to Break Extension
prev_title: Meta-Data Extension
prev_url:   meta_data.html
next_title: Sane Lists Extension
next_url:   sane_lists.html

New-Line-to-Break Extension
===========================

Summary
-------

The New-Line-to-Break (`nl2b`) Extension will cause newlines to be treated as hard breaks; like
StackOverflow and [GitHub][] flavored Markdown do.

[Github]: http://github.github.com/github-flavored-markdown/

Example
-------

    >>> import markdown
    >>> text = """
    ... Line 1
    ... Line 2
    ... """
    >>> html = markdown.markdown(text, extensions=['markdown.extensions.nl2br'])
    >>> print html
    <p>Line 1<br />
    Line 2</p>

Usage
-----

See [Extensions](index.html) for general extension usage, specify `markdown.extensions.nl2br`
as the name of the extension.

This extension does not accept any special configuration options.