Keep existing target in <a>
pierredewilde opened this issue · 1 comments
pierredewilde commented
Flamethrower currently replaces existing link target:
<a href="https://astro.build" target="astro">
is replaced by
<a href="https://astro.build" target="_blank">
Existing target should be kept untouched.
Line 78 in 79883a4
should be replaced by
anchor.target = anchor.target || '_blank';
nodsaibot commented
might as well fork it as it will take awhile if you submit a PR