How to convert reStructuredText to plain text

后端 未结 2 1588
我寻月下人不归
我寻月下人不归 2021-01-17 10:07

I plan to use reStructuredText to write documentation with the main purpose of generating some nice HTML pages. For this I use the docutils rst2html.py tool.

However

2条回答
  •  梦毁少年i
    2021-01-17 10:50

    Sphinx has a TextBuilder for txt output format. Just tried it and it seems to do what you are looking for.

    However, it might be a little outdated because it is not in the default Makefile. But it worked well on my fairly complex documentation (150 pdf pages). To use it, just add the following target to it:

    text:
        $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) _build/text
        @echo
        @echo "Build finished."
    

    Also, keep in mind that Sphinx implements only a subset of the rst specs.

提交回复
热议问题