How to escape apostrophe in MD [ can be used in github as well]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For github, like for displaying a mysql `table_name`, in regular text use \` (backslash backtick) - this really works. | |
For showing backticks inside inline codeblocks `table_name` use double backticks with | |
extra spaces `` `table_name` `` around the inner single backticks. | |
To show the previous example explanation in an inline codeblock: `` `table_name` ``, | |
surround the whole in three backticks with extra spaces, | |
e.g. ``` `` `table_name` `` ``` | |
Ref : https://meta.stackexchange.com/questions/82718/how-do-i-escape-a-backtick-in-markdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment