Paul Trotter
2024-06-17 42640bceb57c450d5c2427bd2b449827468d0ede
Check link isExternal before adding target="_blank" (#1211)

Fixes #1186 openLinksInNewTab opens ALL links in new tabs. Fixed to reflect documented behavior here: https://quartz.jzhao.xyz/plugins/CrawlLinks
1 files modified
2 ■■■ changed files
quartz/plugins/transformers/links.ts 2 ●●● patch | view | raw | blame | history
quartz/plugins/transformers/links.ts
@@ -93,7 +93,7 @@
                }
                node.properties.className = classes
                if (opts.openLinksInNewTab) {
                if (isExternal && opts.openLinksInNewTab) {
                  node.properties.target = "_blank"
                }