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