How to convert reStructuredText to plain text

倖福魔咒の 提交于 2019-12-19 12:41:15

问题


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, I may also need to present the documentation in nice plain text format, that is without the reStructuredText markup, and where paragraph wrapping and similar nice formatting is still performed on the text output. But, there is no rst2txt.py tool in the docutils.

Is there a way to convert reStructuredText to nice plain text format, maybe with use of special options to docutils ?


回答1:


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.




回答2:


I have also seen this done by rendering to html using rst2html, then converting the html to plain text by using a command-line html browser, such as:

  • lynx http://lynx.browser.org
  • links http://links.sourceforge.net
  • w3m http://w3m.sourceforge.net
  • elinks http://elinks.or.cz

Each of these browsers has a command-line switch or similar to render its output to a .txt file, so you could create a two line script called 'rst2txt', something like:

rst2html docs.rst docs.html
lynx -dump docs.html > docs.txt



回答3:


The NoTex.ch online text editor (with support for rST) includes support for plain text conversion (which is based on Sphinx' TextBuilder).



来源:https://stackoverflow.com/questions/1192632/how-to-convert-restructuredtext-to-plain-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!