This file is indexed.

/usr/lib/python3/dist-packages/Markups-2.0.0.egg-info is in python3-markups 2.0.0-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
Metadata-Version: 1.1
Name: Markups
Version: 2.0.0
Summary: A wrapper around various text markups
Home-page: https://github.com/retext-project/pymarkups
Author: Dmitry Shachnev
Author-email: mitya57@gmail.com
License: BSD
Description: 
        .. image:: https://api.travis-ci.org/retext-project/pymarkups.svg
           :target: https://travis-ci.org/retext-project/pymarkups
           :alt: Travis CI status
        
        This module provides a wrapper around various text markup languages.
        
        Available by default are Markdown_, reStructuredText_ and Textile_, but you
        can easily add your own markups.
        
        Usage example:
        
        .. code:: python
        
          >>> import markups
          >>> markup = markups.get_markup_for_file_name("myfile.rst")
          >>> markup.name
          'reStructuredText'
          >>> markup.attributes[markups.common.SYNTAX_DOCUMENTATION]
          'http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html'
          >>> text = """
          ... Hello, world!
          ... =============
          ...
          ... This is an example **reStructuredText** document.
          ... """
          >>> result = markup.convert(text)
          >>> result.get_document_title()
          'Hello, world!'
          >>> print(result.get_document_body())  # doctest: +NORMALIZE_WHITESPACE
          <div class="document" id="hello-world">
          <h1 class="title">Hello, world!</h1>
          <p>This is an example <strong>reStructuredText</strong> document.</p>
          </div>
        
        .. _Markdown: http://daringfireball.net/projects/markdown/
        .. _reStructuredText: http://docutils.sourceforge.net/rst.html
        .. _Textile: https://en.wikipedia.org/wiki/Textile_(markup_language)
        
        The release version can be downloaded from PyPI_. The source code is hosted on
        GitHub_.
        
        .. _PyPI: https://pypi.python.org/pypi/Markups
        .. _GitHub: https://github.com/retext-project/pymarkups
        
        The documentation is available online_ or can be generated from source by
        installing Sphinx_ and running::
        
          python3 setup.py build_sphinx
        
        .. _online: https://pythonhosted.org/Markups/
        .. _Sphinx: http://www.sphinx-doc.org/en/stable/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Software Development :: Libraries :: Python Modules