Skip to content

Commit 34e291e

Browse files
committedJun 19, 2024·
feat(markdown): support single line code import syntax (close #1355)
1 parent 41ad211 commit 34e291e

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed
 

‎packages/markdown/src/plugins/importCodePlugin/createImportCodeBlockRule.ts

+16-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@ const MIN_LENGTH = 9
1010
const START_CODES = [64, 91, 99, 111, 100, 101]
1111

1212
// regexp to match the import syntax
13-
const SYNTAX_RE = /^@\[code(?:{(?:(\d+)?-(\d+)?)})?(?: ([^\]]+))?\]\(([^)]*)\)/
13+
const SYNTAX_RE =
14+
/^@\[code(?:{(?:(?:(?<lineStart>\d+)?-(?<lineEnd>\d+)?)|(?<lineSingle>\d+))})?(?: (?<info>[^\]]+))?\]\((?<importPath>[^)]*)\)/
15+
16+
/**
17+
* Utility function to parse line number from line string that matched by SYNTAX_RE
18+
*/
19+
const parseLineNumber = (line: string | undefined): number | undefined =>
20+
line ? Number.parseInt(line, 10) : undefined
1421

1522
export const createImportCodeBlockRule =
1623
({ handleImportPath = (str) => str }: ImportCodePluginOptions): RuleBlock =>
@@ -36,17 +43,21 @@ export const createImportCodeBlockRule =
3643

3744
// check if it's matched the syntax
3845
const match = state.src.slice(pos, max).match(SYNTAX_RE)
39-
if (!match) return false
46+
if (!match?.groups) return false
4047

4148
// return true as we have matched the syntax
4249
if (silent) return true
4350

44-
const [, lineStart, lineEnd, info, importPath] = match
51+
const { info, importPath } = match.groups
52+
53+
const lineSingle = parseLineNumber(match.groups.lineSingle)
54+
const lineStart = lineSingle ?? parseLineNumber(match.groups.lineStart) ?? 0
55+
const lineEnd = lineSingle ?? parseLineNumber(match.groups.lineEnd)
4556

4657
const meta: ImportCodeTokenMeta = {
4758
importPath: handleImportPath(importPath),
48-
lineStart: lineStart ? Number.parseInt(lineStart, 10) : 0,
49-
lineEnd: lineEnd ? Number.parseInt(lineEnd, 10) : undefined,
59+
lineStart,
60+
lineEnd,
5061
}
5162

5263
// create a import_code token

‎packages/markdown/tests/plugins/importCodePlugin.spec.ts

+10
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@ ${mdFixtureContent}\
8787
const source = `\
8888
@[code{1-2}](${jsFixturePathRelative})
8989
@[code{1-}](${jsFixturePathRelative})
90+
@[code{2}](${jsFixturePathRelative})
9091
@[code{4-5}](${mdFixturePathRelative})
9192
@[code{-5}](${mdFixturePathRelative})
93+
@[code{5}](${mdFixturePathRelative})
9294
`
9395

9496
const expected = `\
@@ -98,12 +100,18 @@ ${jsFixtureContent.split('\n').slice(0, 2).join('\n').replace(/\n?$/, '\n')}\
98100
<pre><code class="language-js">\
99101
${jsFixtureContent.split('\n').slice(0).join('\n').replace(/\n?$/, '\n')}\
100102
</code></pre>
103+
<pre><code class="language-js">\
104+
${jsFixtureContent.split('\n').slice(1, 1).join('\n').replace(/\n?$/, '\n')}\
105+
</code></pre>
101106
<pre><code class="language-md">\
102107
${mdFixtureContent.split('\n').slice(3, 5).join('\n').replace(/\n?$/, '\n')}\
103108
</code></pre>
104109
<pre><code class="language-md">\
105110
${mdFixtureContent.split('\n').slice(0, 5).join('\n').replace(/\n?$/, '\n')}\
106111
</code></pre>
112+
<pre><code class="language-md">\
113+
${mdFixtureContent.split('\n').slice(4, 5).join('\n').replace(/\n?$/, '\n')}\
114+
</code></pre>
107115
`
108116

109117
const md = MarkdownIt().use(importCodePlugin)
@@ -116,6 +124,8 @@ ${mdFixtureContent.split('\n').slice(0, 5).join('\n').replace(/\n?$/, '\n')}\
116124
expect(env.importedFiles).toEqual([
117125
jsFixturePath,
118126
jsFixturePath,
127+
jsFixturePath,
128+
mdFixturePath,
119129
mdFixturePath,
120130
mdFixturePath,
121131
])

0 commit comments

Comments
 (0)
Please sign in to comment.