#!/usr/bin/env python
"""
Run the doconce module on a file (with extension .dco) in Doconce format
and produce another format (LaTeX, HTML, plain text, reStructuredText, ...).

doconce2format HTML mydoc.do.txt
"""

import sys
from doconce import *

if __name__ == '__main__':
    main()
