mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
const convertMd2Doc = require('./convertMd2Doc')
|
|
const path = require('path')
|
|
|
|
module.exports = function (content) {
|
|
const env = process.env.NODE_ENV
|
|
const projectPath = path.resolve(__dirname, '..', '..')
|
|
const relativeURL = this.resourcePath.replace(projectPath + '/', '')
|
|
return convertMd2Doc(content, env, relativeURL)
|
|
}
|