File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -267,22 +267,22 @@ This code block will only add a dark background to the text.
267267To create a multi-line code block without syntax highlight, wrap the text between triple backticks
268268on first and last line. This type of code block will encase the code inside a box.
269269
270+ ````
270271```
271- \```
272272message = "Hello world!"
273273print(message)
274- \```
275274```
275+ ````
276276
277277To create a multi-line block with syntax highlight, add the name of the language you are using right after
278278the triple backticks on the first line. For example, for Python you can write either "python" or "py".
279279
280- ```
281- \ ```python
280+ ````
281+ ```python
282282message = "Hello world!"
283283print(message)
284- \```
285284```
285+ ````
286286
287287If you want to use syntax highlight for a single line of code, you still have to format it
288288like a multi-line block but the code must be on a separate line than the triple backticks.
You can’t perform that action at this time.
0 commit comments