We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aec954 commit e1e568cCopy full SHA for e1e568c
src/generators/ast/index.mjs
@@ -6,7 +6,9 @@ import { globSync } from 'glob';
6
import { read } from 'to-vfile';
7
8
import { getRemark } from '../../utils/remark.mjs';
9
+import createQueries from '../utils/queries/index.mjs';
10
11
+const { updateStabilityPrefixToLink } = createQueries();
12
const remarkProcessor = getRemark();
13
14
/**
@@ -40,6 +42,8 @@ export default {
40
42
filePaths.map(async path => {
41
43
const vfile = await read(path);
44
45
+ updateStabilityPrefixToLink(vfile);
46
+
47
return {
48
tree: remarkProcessor.parse(vfile),
49
file: { stem: vfile.stem, basename: vfile.basename },
0 commit comments