python-tldp/tldp/doctypes/rst.py

24 lines
441 B
Python
Raw Normal View History

2016-02-11 03:22:23 +00:00
#! /usr/bin/python
2016-02-18 21:25:02 +00:00
# -*- coding: utf8 -*-
2016-04-29 15:02:02 +00:00
#
# Copyright (c) 2016 Linux Documentation Project
2016-02-11 03:22:23 +00:00
from __future__ import absolute_import, division, print_function
2016-03-15 05:18:09 +00:00
from __future__ import unicode_literals
2016-02-11 03:22:23 +00:00
import logging
2016-02-11 03:22:23 +00:00
2016-02-26 20:06:27 +00:00
from tldp.doctypes.common import BaseDoctype
2016-02-26 19:56:28 +00:00
logger = logging.getLogger(__name__)
class RestructuredText(BaseDoctype):
2016-02-12 20:43:45 +00:00
formatname = 'reStructuredText'
2016-02-11 03:22:23 +00:00
extensions = ['.rst']
signatures = []
2016-02-12 20:43:45 +00:00
2016-02-11 03:22:23 +00:00
#
# -- end of file