From 97181b167adda96892bc0d7d1d54c0458c0ea51c Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Tue, 1 Mar 2016 21:50:58 -0800 Subject: [PATCH] temporarily forgetting about other doctypes --- tests/example.py | 28 ++++++++++++++-------------- tldp/doctypes/__init__.py | 6 +++--- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/tests/example.py b/tests/example.py index 210b30f..458f958 100644 --- a/tests/example.py +++ b/tests/example.py @@ -37,20 +37,20 @@ ex_docbook5xml = SimpleNamespace( filename=opj(sampledocs, 'docbook5xml-simple.xml'), ) -ex_rst = SimpleNamespace( - type=tldp.doctypes.rst.RestructuredText, - filename=opj(sampledocs, 'restructuredtext-simple.rst'), - ) - -ex_text = SimpleNamespace( - type=tldp.doctypes.text.Text, - filename=opj(sampledocs, 'text-simple.txt'), - ) - -ex_markdown = SimpleNamespace( - type=tldp.doctypes.markdown.Markdown, - filename=opj(sampledocs, 'markdown-simple.md'), - ) +# ex_rst = SimpleNamespace( +# type=tldp.doctypes.rst.RestructuredText, +# filename=opj(sampledocs, 'restructuredtext-simple.rst'), +# ) +# +# ex_text = SimpleNamespace( +# type=tldp.doctypes.text.Text, +# filename=opj(sampledocs, 'text-simple.txt'), +# ) +# +# ex_markdown = SimpleNamespace( +# type=tldp.doctypes.markdown.Markdown, +# filename=opj(sampledocs, 'markdown-simple.md'), +# ) ex_linuxdoc_dir = SimpleNamespace( type=tldp.doctypes.linuxdoc.Linuxdoc, diff --git a/tldp/doctypes/__init__.py b/tldp/doctypes/__init__.py index e068153..9101b30 100644 --- a/tldp/doctypes/__init__.py +++ b/tldp/doctypes/__init__.py @@ -1,6 +1,6 @@ -from .text import Text -from .rst import RestructuredText -from .markdown import Markdown +#from .text import Text +#from .rst import RestructuredText +#from .markdown import Markdown from .linuxdoc import Linuxdoc from .docbooksgml import DocbookSGML from .docbook4xml import Docbook4XML