Hi,
Is it possible to parse an inline literal to replace text using substitution?
For example, our RST doc includes values that are updated periodically such as:
The policy must be stored in the ``/etc/debsig/policies/|GPG_KEY_ID|`` directory
.. |GPG_KEY_ID| replace:: 69BE019A
The substitution text is interpreted, well, literally:
I've tried using backslash-escaped whitespace, as follows, but the second backslash escapes both the text and the second set of double-ticks:
The policy must be stored in the ``/etc/debsig/policies/\ |GPG_KEY_ID|\ `` directory
I know to use the parsed-literal directive for code blocks. Is there an option for inline literals?
Thanks,
Mark