docutils/reStructuredText template features
问题 How could I customize placeholders in my .rst file with actual values? For example, I have example.rst file with following content: Header ------------------------------------ ${custom_text} I want to replace ${custom_text} property with the value this is the value of custom property by running following command: rst2html example.rst -o example.html -Dcustom_text="this is the value of custom property" Also I wonder whether it is possible to customize template using .properties file? For