!! 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
```

[expect]
```format
testing_formatted
```
