fix scanning for tags in content
This commit is contained in:
parent
ed62ece491
commit
83269ac26e
3 changed files with 4 additions and 5 deletions
|
@ -86,7 +86,8 @@ export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> =
|
|||
if (
|
||||
opts.prettyLinks &&
|
||||
node.children.length === 1 &&
|
||||
node.children[0].type === "text"
|
||||
node.children[0].type === "text" &&
|
||||
!node.children[0].value.startsWith("#")
|
||||
) {
|
||||
node.children[0].value = path.basename(node.children[0].value)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue