You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for a great package.
In verbatim org blocks, consecutive * from start of the string becomes escaped when converting it to restrucured text.
Examples:
What is the background if this behavior? I don't know restructured text very well but using sphinx to export it to other formats preserve the backslash.
I'd like to have literal * in verbatim blocks but can't figure out how to do that.
Looking at the regexp in the code it confirms this behavior:
(string-match"\\`*" text)
I've been trying to avoid this issue by using this instead but not sure if it's what is intended:
(string-match"`+" text)
The text was updated successfully, but these errors were encountered:
Thanks for a great package.
In verbatim org blocks, consecutive
*
from start of the string becomes escaped when converting it to restrucured text.Examples:
What is the background if this behavior? I don't know restructured text very well but using sphinx to export it to other formats preserve the backslash.
I'd like to have literal
*
in verbatim blocks but can't figure out how to do that.Looking at the regexp in the code it confirms this behavior:
I've been trying to avoid this issue by using this instead but not sure if it's what is intended:
The text was updated successfully, but these errors were encountered: