denoland / deno-gfm

Server-side GitHub Flavored Markdown rendering for Deno
https://jsr.io/@deno/gfm
MIT License
221 stars 33 forks source link

formatting of colon is shifted to the left in a math assignment #125

Open sanderhahn opened 2 months ago

sanderhahn commented 2 months ago

The colon in shifted to the left, see screenshot:

Screenshot 2024-07-27 at 15 08 51

$x:=x$

On github:

$x:=x$

Also I needed to add this to the css to hide the unformatted formulas:

    *[aria-hidden="true"] {
      display: none;
    }

Added this to format blocks, but that might be more of a style interpretation:

    .katex-display {
      display: block;
      margin: 1em 0;
      text-align: center;
    }