Skip to content

Commit 3ca2bf4

Browse files
committed
chore: remove console statements
1 parent c43af63 commit 3ca2bf4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

website/src/lib/unified/remark-resolve-relative-links/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ const remarkResolveRelativeLinks: Plugin<[Options]> = ({ resolver }) => {
1414
const visitor = (link: Link) => {
1515
// only handle relative links
1616
if (!relativeLinkRegex.test(link.url)) { return }
17-
console.log('old', link.url)
1817
link.url = resolver(link.url)
19-
console.log('new', link.url)
2018
}
2119

2220
visit(ast, 'link', visitor)

0 commit comments

Comments
 (0)