Code
Create Markdown code blocks using backticks
Code Blocks
To represent a word or phrase as code, wrap it in backticks `.
| Markdown Syntax | HTML Syntax | Rendered Output |
|---|---|---|
| `This is a ``code``` | This is a code | This is a code |
Escaping Backticks
If the word or phrase you want to represent as code contains one or more backticks, you can wrap the word or phrase in double backticks ``.
| Markdown Syntax | HTML Syntax | Rendered Output |
|---|---|---|
Use `code` in your Markdown file. | Use | Use code in your Markdown file. |