This file is indexed.

/usr/lib/python3/dist-packages/misaka-1.0.2.egg-info/PKG-INFO is in python3-misaka 1.0.2-5build1.

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
Metadata-Version: 1.1
Name: misaka
Version: 1.0.2
Summary: The Python binding for Sundown, a markdown parsing library.
Home-page: http://misaka.61924.nl/
Author: Frank Smit
Author-email: frank@61924.nl
License: MIT
Description: Misaka
        ======
        
        .. image:: https://secure.travis-ci.org/FSX/misaka.png?branch=master
        
        The Python binding for Sundown_, a markdown parsing library.
        
        Documentation can be found at: http://misaka.61924.nl/
        
        .. _Sundown: https://github.com/tanoku/sundown
        
        
        Installation
        ------------
        
        Cython is needed to compile Misaka.
        
        With pip::
        
            pip install misaka
        
        Or manually::
        
            python setup.py install
        
        
        Example
        -------
        
        Very simple example::
        
            from misaka import Markdown, HtmlRenderer
        
            rndr = HtmlRenderer()
            md = Markdown(rndr)
        
            print md.render('some text')
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Utilities