!! should format code blocks !!
Testing:
```ts

const t = 5;

test;

```
```
other
```




[expect]
Testing:

```ts
const t = 5;

test;
```

```
other
```

!! should format indented code blocks as-is !!

    const t = 4;

        const t = 5;


    const t = 6;


[expect]
    const t = 4;

        const t = 5;


    const t = 6;

!! should format code block inside list !!
1. Testing

    ```
    some code
    ```

[expect]
1. Testing

   ```
   some code
   ```

!! should keep an indented code block as indented !!
Test:

    test

[expect]
Test:

    test

!! should keep a code block indented a lot as being indented a lot !!
10. Test

        ```
        testing
        ```

[expect]
10. Test

        ```
        testing
        ```

!! should format certain tags !!
```format
testing
```

Then indented:

1. Testing
   ```format
   other
   ```

[expect]
```format
testing_formatted_80
```

Then indented:

1. Testing
   ```format
   other_formatted_77
   ```

!! should add one extra backtick per set of backticks inside code block !!
````
Test
```
nested
```
````

`````
t````
`````

[expect]
````
Test
```
nested
```
````

`````
t````
`````

!! should keep first line indentation !!
```


                    │
                  HTTP            ┌───────────────┐
┌───────────────────┼─────────────┤   component   ├─┐
│                   │             └───────────────┘ │
│                   ▼                               │
│         ┌───────────────────┐                     │
│         │                   │                     │
│         │    Some Text      │                     │
│         │                   │                     │
│         └───────────────────┘                     │
│                   │                               │
└───────────────────┼───────────────────────────────┘
                    ▼


```

[expect]
```
                    │
                  HTTP            ┌───────────────┐
┌───────────────────┼─────────────┤   component   ├─┐
│                   │             └───────────────┘ │
│                   ▼                               │
│         ┌───────────────────┐                     │
│         │                   │                     │
│         │    Some Text      │                     │
│         │                   │                     │
│         └───────────────────┘                     │
│                   │                               │
└───────────────────┼───────────────────────────────┘
                    ▼
```
