I have following content: ```markdown 123 \[ H = \Delta \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}, \] ``` And the **current result** will be: ``` 123 [ H = \Delta \begin{bmatrix} 0 & 1 \ 1 & 0 \end{bmatrix}, ] ``` But the **expected result** should be:  When I am trying to fix this, just modify the content like this: ```markdown 123 \[ H = \Delta \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}, \] ``` And it will produce the correct result.