mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(markdown-loader): windows path format (#9127)
This commit is contained in:
parent
0736700296
commit
b72f4980a9
@ -1,5 +1,6 @@
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
const parser = require('./md-parser');
|
const parser = require('./md-parser');
|
||||||
|
|
||||||
function hyphenate(str) {
|
function hyphenate(str) {
|
||||||
@ -7,6 +8,7 @@ function hyphenate(str) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module.exports = function extraDemo(content) {
|
module.exports = function extraDemo(content) {
|
||||||
|
const isWin = /^win/.test(os.platform());
|
||||||
const markdownDir = path.dirname(this.resourcePath);
|
const markdownDir = path.dirname(this.resourcePath);
|
||||||
const demoLinks = [];
|
const demoLinks = [];
|
||||||
|
|
||||||
@ -15,7 +17,12 @@ module.exports = function extraDemo(content) {
|
|||||||
function (_, attrs, link) {
|
function (_, attrs, link) {
|
||||||
link = link.trim(); // 去换行符
|
link = link.trim(); // 去换行符
|
||||||
const tag = 'demo-code-' + hyphenate(path.basename(link, '.vue'));
|
const tag = 'demo-code-' + hyphenate(path.basename(link, '.vue'));
|
||||||
const fullLink = path.join(markdownDir, link);
|
let fullLink;
|
||||||
|
if (isWin) {
|
||||||
|
fullLink = path.posix.join(...markdownDir.split(path.sep), link);
|
||||||
|
} else {
|
||||||
|
fullLink = path.join(markdownDir, link);
|
||||||
|
}
|
||||||
demoLinks.indexOf(fullLink) === -1 && demoLinks.push(fullLink);
|
demoLinks.indexOf(fullLink) === -1 && demoLinks.push(fullLink);
|
||||||
const demoContent = fs.readFileSync(fullLink, { encoding: 'utf8' });
|
const demoContent = fs.readFileSync(fullLink, { encoding: 'utf8' });
|
||||||
const demoParseredContent = parser.render(
|
const demoParseredContent = parser.render(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user