lzanini / mdbook-katex

A preprocessor for mdBook, rendering LaTex equations to HTML at build time.
MIT License
205 stars 34 forks source link

the table will have only one column if continuous math expressiones is in table colums #8

Closed imxood closed 3 years ago

imxood commented 3 years ago

this is wrong

|  header1   | header2  |
|  ----  | ----  |
| $\omega$     | $\omega$ |

this is good after adding any a symbol after $

|  header1   | header2  |
|  ----  | ----  |
| $\omega$.     | $\omega$ |

image

kknives commented 3 years ago

This seems to have been fixed:

| Syntax | Description |
| --- | ----------- |
| $\omega$ | $\omega$ |
| Paragraph | Text |

image