-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot escape markdown characters #24
Comments
What kind of generation are you doing ? The normal way is to use templates |
I'm just printing a string containing valid markdown using the |
I should support escaping with backslash. |
It doesnt work for me. Whenever I use an escaped * character, it always just displays the backslash and makes the rest of the line italics. |
@adam-mcdaniel I confirm I didn't implement backslash escaping |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using this crate in my compiler to automatically generate documentation, and I've run into an issue where I cannot escape (use as regular characters)
*
characters, or other characters such as`
. We've tried\*
,\\*
, and\\\*
, and nothing works. Is there a way to display asterisks and other markdown command characters?The text was updated successfully, but these errors were encountered: