/usr/lib/python3/dist-packages/markups/textile.py is in python3-markups 1.0.1-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 | # This file is part of python-markups module
# License: BSD
# Copyright: (C) Dmitry Shachnev, 2013-2015
from __future__ import absolute_import
import markups.common as common
from markups.abstract import AbstractMarkup
class TextileMarkup(AbstractMarkup):
"""Markup class for Textile language.
Inherits :class:`~markups.abstract.AbstractMarkup`.
"""
name = 'Textile'
attributes = {
common.LANGUAGE_HOME_PAGE: 'http://en.wikipedia.org/wiki/Textile_(markup_language)',
common.MODULE_HOME_PAGE: 'https://github.com/textile/python-textile',
common.SYNTAX_DOCUMENTATION: 'http://movabletype.org/documentation/author/textile-2-syntax.html'
}
file_extensions = ('.textile',)
default_extension = '.textile'
@staticmethod
def available():
try:
import textile
except ImportError:
return False
return True
def __init__(self, filename=None):
AbstractMarkup.__init__(self, filename)
from textile import textile
self.textile = textile
def get_document_body(self, text):
return self.textile(text)
|