remove old boilerplate from markdown and rst stock code

This commit is contained in:
Martin A. Brown 2016-03-09 18:08:18 -08:00
parent c581980aaf
commit 2d75d3c4de
1 changed files with 0 additions and 13 deletions

View File

@ -14,19 +14,6 @@ class Frobnitz(BaseDoctype):
formatname = 'Frobnitz'
extensions = ['.fb']
signatures = ['{{Frobnitz-Format 2.3}}']
tools = ['executablename', 'another']
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