sambostock / markdown-test

Repo for testing various markdown related things
0 stars 0 forks source link

Backticks #2

Open sambostock opened 3 years ago

sambostock commented 3 years ago

How many can be used in Markdown?

atesgoral commented 3 years ago

Applies to inline code blocks as well. You just need to match the closing number of backticks to the starting number of backticks, with the caveat that the last non-closing backtick in your code snippet needs to be unambigious (i.e. a-non-backtick):

- Inline `code block`
- Inline ``code `block` two``
- Inline ```code `block` three```
- Inline ````code `block` four````

Rendered as: