vuepress / core

Vue-Powered Static Site Generator
https://vuepress.vuejs.org
MIT License
2.17k stars 923 forks source link

[Feature request] Integrate rowspan in vuepress #132

Closed tiziodcaio closed 3 years ago

tiziodcaio commented 3 years ago

Feature request

It would be possible to add the rowspan to the default theme, see example for clarification

Description

immagine

As the markdown-it-multimd-table doesn't work on vuepress 2 (if you know how to enable it, i would very happy too! 😊

Proposed Solution

I'm not so expert, so i ask to you if there is a method...

meteorlxy commented 3 years ago

Put this snippet in your config file:

module.exports = {
  extendsMarkdown(md) {
    md.use(require('markdown-it-multimd-table'));
  },
}
tiziodcaio commented 3 years ago

And in vuepress 2? I tried with rowspan but it doesn't work...

meteorlxy commented 3 years ago

This is for vuepress2. Remember extendMarkdown is renamed to extendsMarkdown

tiziodcaio commented 3 years ago

okok no problem ✌