We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1559459 commit 4dba572Copy full SHA for 4dba572
src/format/links.ts
@@ -18,7 +18,6 @@ interface Element extends Node {
18
export function set_link_attributes(): Transformer {
19
return function transformer(tree) {
20
visit<Element>(tree, "element", (node) => {
21
- // console.log(node);
22
if (node.tagName === "a") {
23
if (node.properties.href && node.properties.href.startsWith("http")) {
24
node.properties.target = "_blank";
0 commit comments