redbug312 / markdown-it-multimd-table

Multimarkdown table syntax plugin for markdown-it markdown parser
MIT License
146 stars 37 forks source link

Bug: Rowspan appears to not work #60

Closed c3er closed 1 year ago

c3er commented 1 year ago

It appears that the rowspan feature does not work currently. Trying the example from the README looks like this:

Screenshot of table that is supposed to have cells with rowspan

c3er commented 1 year ago

Either it is my fault or or the API changed. I didn't set the rowspan option to true. For using rowspan, it should look like this:

// ...
.use(require("markdown-it-multimd-table"), {
    // Other options...
    rowspan: true,
})
//...