We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b087ca commit 5bb791cCopy full SHA for 5bb791c
src/index.js
@@ -32,7 +32,10 @@ try {
32
async function processFile(filename) {
33
const oldContent = readFileSync(filename, 'utf8')
34
35
- const newContent = await replacer.transformMarkdownLinks(oldContent, filename)
+ const newContent = await replacer.transformMarkdownLinks(
36
+ oldContent,
37
+ filename
38
+ )
39
40
if (oldContent !== newContent) {
41
debug(filename + ' updated')
0 commit comments