feat: sub+sup+imsize markdown renderers
This commit is contained in:
17
server/modules/rendering/markdown-supsub/renderer.js
Normal file
17
server/modules/rendering/markdown-supsub/renderer.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const mdSub = require('markdown-it-sub')
|
||||
const mdSup = require('markdown-it-sup')
|
||||
|
||||
// ------------------------------------
|
||||
// Markdown - Subscript / Superscript
|
||||
// ------------------------------------
|
||||
|
||||
module.exports = {
|
||||
init (md, conf) {
|
||||
if (conf.subEnabled) {
|
||||
md.use(mdSub)
|
||||
}
|
||||
if (conf.supEnabled) {
|
||||
md.use(mdSup)
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user