Skip to content

Commit 29d44e7

Browse files
JounQinbrc-dd
andauthoredJun 27, 2022
fix(build): show workaround on encountering dead links (#822) (#868)
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
1 parent e33955e commit 29d44e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/node/markdownToVue.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,11 @@ export async function createMarkdownToVueRenderFn(
9797
const recordDeadLink = (url: string) => {
9898
console.warn(
9999
c.yellow(
100-
`\n(!) Found dead link ${c.cyan(url)} in file ${c.white(c.dim(file))}`
100+
`\n(!) Found dead link ${c.cyan(url)} in file ${c.white(
101+
c.dim(file)
102+
)}\nIf it is intended, you can use:\n ${c.cyan(
103+
`<a href="${url}" target="_blank" rel="noopener noreferrer">${url}</a>`
104+
)}`
101105
)
102106
)
103107
deadLinks.push(url)

0 commit comments

Comments
 (0)
Please sign in to comment.