Skip to content

Commit

Permalink
feat: add markdown-it-pivot-table rendering module (#6574)
Browse files Browse the repository at this point in the history
* feat: markdown-it-pivot-table

* chore: upgrade dependency version

* style: remove semicolon in renderer.js

---------

Co-authored-by: Nicolas Giard <[email protected]>
  • Loading branch information
jaeseopark and NGPixel authored Jul 28, 2023
1 parent db8a09f commit d75fc76
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0",
"markdown-it-task-lists": "2.1.1",
"markdown-it-pivot-table": "1.0.1",
"mathjax": "3.2.2",
"mime-types": "2.1.35",
"moment": "2.29.4",
Expand Down
8 changes: 8 additions & 0 deletions server/modules/rendering/markdown-pivot-table/definition.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
key: markdownPivotTable
title: Pivot Table
description: Add pivot table support
author: jaeseopark
icon: mdi-table
enabledDefault: false
dependsOn: markdownCore
props: {}
7 changes: 7 additions & 0 deletions server/modules/rendering/markdown-pivot-table/renderer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const pivotTable = require('markdown-it-pivot-table')

module.exports = {
init (md) {
md.use(pivotTable)
}
}

0 comments on commit d75fc76

Please sign in to comment.