mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
feat: add class alias
to aliases (#585)
This commit is contained in:
parent
50f0ba29a2
commit
727b9b5d72
1 changed files with 10 additions and 0 deletions
|
@ -54,6 +54,16 @@ export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> =
|
||||||
node.properties.className ??= []
|
node.properties.className ??= []
|
||||||
node.properties.className.push(isAbsoluteUrl(dest) ? "external" : "internal")
|
node.properties.className.push(isAbsoluteUrl(dest) ? "external" : "internal")
|
||||||
|
|
||||||
|
// Check if the link has alias text
|
||||||
|
if (
|
||||||
|
node.children.length === 1 &&
|
||||||
|
node.children[0].type === "text" &&
|
||||||
|
node.children[0].value !== dest
|
||||||
|
) {
|
||||||
|
// Add the 'alias' class if the text content is not the same as the href
|
||||||
|
node.properties.className.push("alias")
|
||||||
|
}
|
||||||
|
|
||||||
if (opts.openLinksInNewTab) {
|
if (opts.openLinksInNewTab) {
|
||||||
node.properties.target = "_blank"
|
node.properties.target = "_blank"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue