Могу ли я заменить кодовый блок reStructuredText?
Есть ли способ сделать замену или замену переменной с replace
в reStructuredText внутри code-block
?
Например, в
.. code-block:: sh
$ |script| args moreargs
Some output
$ another_script args moreargs
Some more output
с помощью
.. |script| replace:: some_script
отображается как
$ |script| args moreargs
Some output
$ another_script args moreargs
Some more output
и не
$ some_script args moreargs
Some output
$ another_script args moreargs
Some more output
Я знаю, что я могу использовать parsed-literal
, но это теряет синтаксическую раскраску.