mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
95 lines
2.8 KiB
JavaScript
95 lines
2.8 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>' + body + '</tbody>'
|
|
return (
|
|
'<div class="md-table-wrapper"><n-table single-column class="md-table">\n' +
|
|
'<thead>\n' +
|
|
header +
|
|
'</thead>\n' +
|
|
body +
|
|
'</n-table>\n' +
|
|
'</div>'
|
|
)
|
|
},
|
|
|
|
tablerow (content) {
|
|
return '<tr>\n' + content + '</tr>\n'
|
|
},
|
|
|
|
tablecell (content, flags) {
|
|
const type = flags.header ? 'th' : 'td'
|
|
const tag = flags.align
|
|
? '<' + type + ' align="' + flags.align + '">'
|
|
: '<' + type + '>'
|
|
return tag + content + '</' + type + '>\n'
|
|
},
|
|
|
|
code: (code, language) => {
|
|
if (language.startsWith('__')) {
|
|
language = language.replace('__', '')
|
|
}
|
|
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-style="padding: 0;">
|
|
<n-scrollbar x-scrollable content-style="padding: 12px; 16px;">
|
|
${content}
|
|
</n-scrollbar>
|
|
</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
|