mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
const convertMd2Demo = require('./convertMd2Demo')
|
|
const projectPath = require('./project-path')
|
|
|
|
module.exports = function (content) {
|
|
const relativeUrl = this.resourcePath.replace(projectPath + '/', '')
|
|
return convertMd2Demo(content, {
|
|
relativeUrl,
|
|
resourcePath: this.resourcePath
|
|
})
|
|
}
|