Skip to content

Commit

Permalink
Cleanup MarkdownLint issue in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
waylan committed Dec 20, 2019
1 parent 1b8473a commit d8f8e5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/user-guide/writing-your-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,25 +510,25 @@ blocks without indentation.
The first line should contain 3 or more backtick (`` ` ``) characters, and the
last line should contain the same number of backtick characters (`` ` ``):

~~~no-highlight
````no-highlight
```
Fenced code blocks are like Standard
Markdown’s regular code blocks, except that
they’re not indented and instead rely on
start and end fence lines to delimit the
code block.
```
~~~
````

With this approach, the language can optionally be specified on the first line
after the backticks which informs any syntax highlighters of the language used:

~~~no-highlight
````no-highlight
```python
def fn():
pass
```
~~~
````

Note that fenced code blocks can not be indented. Therefore, they cannot be
nested inside list items, blockquotes, etc.
Expand Down

0 comments on commit d8f8e5b

Please sign in to comment.