mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
27 lines
808 B
JavaScript
27 lines
808 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const mdContainer = require('markdown-it-container')
|
|
|
|
module.exports = (md) => {
|
|
md.use(mdContainer, 'demo', {
|
|
validate(params) {
|
|
return params.trim().match(/^demo\s*(.*)$/)
|
|
},
|
|
render(tokens, idx) {
|
|
const m = tokens[idx].info.trim().match(/^demo\s*(.*)$/)
|
|
if (tokens[idx].nesting === 1) {
|
|
const description = m && m.length > 1 ? m[1] : ''
|
|
const content =
|
|
tokens[idx + 1].type === 'fence' ? tokens[idx + 1].content : ''
|
|
return `<demo-block>
|
|
${description ? `<div>${md.render(description)}</div>` : ''}
|
|
<!--element-demo: ${content}:element-demo-->
|
|
`
|
|
}
|
|
return '</demo-block>'
|
|
},
|
|
})
|
|
|
|
md.use(mdContainer, 'tip')
|
|
md.use(mdContainer, 'warning')
|
|
}
|