mirror of https://github.com/requarks/wiki
feat: add markdown-it-pivot-table rendering module (#6574)
* feat: markdown-it-pivot-table * chore: upgrade dependency version * style: remove semicolon in renderer.js --------- Co-authored-by: Nicolas Giard <github@ngpixel.com>pull/4257/merge
parent
db8a09fe8c
commit
d75fc76c0c
@ -0,0 +1,8 @@
|
||||
key: markdownPivotTable
|
||||
title: Pivot Table
|
||||
description: Add pivot table support
|
||||
author: jaeseopark
|
||||
icon: mdi-table
|
||||
enabledDefault: false
|
||||
dependsOn: markdownCore
|
||||
props: {}
|
@ -0,0 +1,7 @@
|
||||
const pivotTable = require('markdown-it-pivot-table')
|
||||
|
||||
module.exports = {
|
||||
init (md) {
|
||||
md.use(pivotTable)
|
||||
}
|
||||
}
|
Loading…
Reference in new issue