naive-ui/build/loaders/md-renderer.js
2021-04-05 14:38:39 +08:00

93 lines
2.7 KiB
JavaScript

const hljs = require('highlight.js')
const marked = require('marked')
function createRenderer (wrapCodeWithCard = true) {
const renderer = new marked.Renderer()
const overrides = {
table (header, body) {
if (body) body = '<tbody class="n-table__tbody">' + body + '</tbody>'
return (
'<div class="md-table-wrapper"><n-table single-column class="md-table">\n' +
'<thead class="n-table__thead">\n' +
header +
'</thead>\n' +
body +
'</n-table>\n' +
'</div>'
)
},
tablerow (content) {
return '<tr class="n-table__tr">\n' + content + '</tr>\n'
},
tablecell (content, flags) {
const type = flags.header ? 'th' : 'td'
const tag = flags.align
? '<' +
type +
` class="n-table__${type}"` +
' align="' +
flags.align +
'">'
: '<' + type + ` class="n-table__${type}"` + '>'
return tag + content + '</' + type + '>\n'
},
code: (code, language) => {
const isLanguageValid = !!(language && hljs.getLanguage(language))
if (!isLanguageValid) {
throw new Error(
`MdRendererError: ${language} is not valid for code - ${code}`
)
}
const highlighted = hljs.highlight(code, { language }).value
const content = `<n-code><pre v-pre>${highlighted}</pre></n-code>`
return wrapCodeWithCard
? `<n-card size="small" class="md-card">${content}</n-card>`
: content
},
heading: (text, level) => {
const id = text.replace(/ /g, '-')
return `<n-h${level} id="${id}">${text}</n-h${level}>`
},
blockquote: (quote) => {
return `<n-blockquote>${quote}</n-blockquote>`
},
hr: () => '<n-hr />',
paragraph: (text) => {
return `<n-p>${text}</n-p>`
},
link (href, title, text) {
if (/^(http:|https:)/.test(href)) {
return `<n-a href="${href}" target="_blank">${text}</n-a>`
}
return `<n-a to="${href}" >${text}</n-a>`
},
list (body, ordered, start) {
const type = ordered ? 'n-ol' : 'n-ul'
const startatt = ordered && start !== 1 ? ' start="' + start + '"' : ''
return `<${type}${startatt}>\n` + body + `</${type}>\n`
},
listitem (text) {
return `<n-li>${text}</n-li>`
},
codespan (code) {
return `<n-text code>${code}</n-text>`
},
strong (text) {
return `<n-text strong>${text}</n-text>`
},
checkbox (checked) {
return `<n-checkbox :checked="${checked}" style="vertical-align: -2px; margin-right: 8px;" />`
}
}
Object.keys(overrides).forEach((key) => {
renderer[key] = overrides[key]
})
return renderer
}
module.exports = createRenderer