Misaligned separators in grid table ``` % pandoc -f markdown -t html : Grid Table +-----------------+:-:+ |Some text |[text]{.class1 .class2 .class3}| +-----------------+---+ |Some text |[text]{.class1 .class2 .class3}| +-----------------+---+ |Some text |[text]{.class1 .class2 .class3}| +-----------------+---+ ^D
Grid Table
Some text text
Some text text
Some text text
``` Missing cell ``` % pandoc -f markdown -t gfm +------+ | text | +------+---+ | text | 1 | +------+---+ ^D | | | |------|-----| | text | | | text | 1 | ```