Skip to content

Commit 8f83a17

Browse files
shigmaulivz
authored andcommitted
feat($markdown): code snippet hmr (close #1309) (#1358)
1 parent d16d3d5 commit 8f83a17

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

packages/@vuepress/markdown/lib/snippet.js

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
1-
const { fs } = require('@vuepress/shared-utils')
1+
const { fs, path } = require('@vuepress/shared-utils')
22

33
module.exports = function snippet (md, options = {}) {
4+
const fence = md.renderer.rules.fence
45
const root = options.root || process.cwd()
6+
7+
md.renderer.rules.fence = (...args) => {
8+
const [tokens, idx, , { loader }] = args
9+
const token = tokens[idx]
10+
const { src } = token
11+
if (src) {
12+
if (loader) {
13+
loader.addDependency(src)
14+
}
15+
if (fs.existsSync(src)) {
16+
token.content = fs.readFileSync(src, 'utf8')
17+
} else {
18+
token.content = 'Not found: ' + src
19+
token.info = ''
20+
}
21+
}
22+
return fence(...args)
23+
}
24+
525
function parser (state, startLine, endLine, silent) {
626
const CH = '<'.charCodeAt(0)
727
const pos = state.bMarks[startLine] + state.tShift[startLine]
@@ -25,14 +45,13 @@ module.exports = function snippet (md, options = {}) {
2545
const end = state.skipSpacesBack(max, pos)
2646
const rawPath = state.src.slice(start, end).trim().replace(/^@/, root)
2747
const filename = rawPath.split(/[{\s]/).shift()
28-
const content = fs.existsSync(filename) ? fs.readFileSync(filename).toString() : 'Not found: ' + filename
2948
const meta = rawPath.replace(filename, '')
3049

3150
state.line = startLine + 1
3251

3352
const token = state.push('fence', 'code', 0)
3453
token.info = filename.split('.').pop() + meta
35-
token.content = content
54+
token.src = path.resolve(filename)
3655
token.markup = '```'
3756
token.map = [startLine, startLine + 1]
3857

0 commit comments

Comments
 (0)