rust-lang / mdBook

Create book from markdown files. Like Gitbook but implemented in Rust

Home Page:https://rust-lang.github.io/mdBook/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Markdown tables are not generated correctly

steinemann opened this issue · comments

commented

Hi,

I have an issue creating Markdown tables in books.

I have the following syntax in the markdown file

| A | B | C |
| - | - | - |
| a | b | c |

I would expect something like

A B C
a b c

Unfortunately I get
| A | B | C | | - | - | - | | a | b | c |

Is there anything I need to take care of when using tables ?

Version : mdbook v0.4.21

commented

Hi,

I guess I found it. There was a plugin that caused this issue.

Sorry for the noise.