removing text (will be supported by asciidoc)

This commit is contained in:
Martin A. Brown 2016-03-09 07:54:55 -08:00
parent 885d6a12f3
commit 0c433d7306
2 changed files with 0 additions and 33 deletions

View File

@ -1,4 +1,3 @@
# from .text import Text
# from .rst import RestructuredText
# from .markdown import Markdown
from .asciidoc import Asciidoc

View File

@ -1,32 +0,0 @@
#! /usr/bin/python
# -*- coding: utf8 -*-
from __future__ import absolute_import, division, print_function
import logging
from tldp.doctypes.common import BaseDoctype
logger = logging.getLogger(__name__)
class Text(BaseDoctype):
formatname = 'plain text'
extensions = ['.txt']
signatures = []
tools = ['pandoc']
def create_txt(self):
logger.info("Creating txt for %s", self.source.stem)
def create_pdf(self):
logger.info("Creating PDF for %s", self.source.stem)
def create_html(self):
logger.info("Creating chunked HTML for %s", self.source.stem)
def create_htmls(self):
logger.info("Creating single page HTML for %s", self.source.stem)
#
# -- end of file