diff --git a/tldp/doctypes/example.py b/tldp/doctypes/example.py index 39194b8..e4425cb 100644 --- a/tldp/doctypes/example.py +++ b/tldp/doctypes/example.py @@ -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