Everything to know about formatting a post

Multiline Code

Back

This is the feature when clicking the Preformatted Text option. Multiline code requires text to be wrapped in ``` at the minimum

```
Text
Text Text
Text
```
Text
Text Text
Text

To display ``` within the code box, the text must be wrapped in more ` than the desired display amount

Progressively removing `

6 `

`````
Text
````
Text Text
```
Text Text Text
```
Text Text
````
Text
`````

5 `

Text
````
Text Text
```
Text Text Text
```
Text Text
````
Text

4 `

Text

Text Text
```
Text Text Text
```
Text Text

Text

3 `

Text
Text Text

Text Text Text

Text Text
Text

Syntax Highlighting

To add syntax highlighting, specify a language next to the `before the code block.

```json

  "firstName": "Joe",
  "lastName": "Shmoe",
  "age": 50

```
  "firstName": "Joe",
  "lastName": "Shmoe",
  "age": 50

A full list can be found here

1 Like