In Vuepress default theme, every time you add an external link, an icon is added to the link.
I am creating a new theme that inherits the default theme, but I would like to remove this behavior.
How can I do it?
In Vuepress default theme, every time you add an external link, an icon is added to the link.
I am creating a new theme that inherits the default theme, but I would like to remove this behavior.
How can I do it?

It seems there's no way to do this in the configs for vuepress 1. However here's what I did that's acceptable.
Use the
markdownsection of yourconfig.jsobject to understand/control what attributes are on external links:Then target those links. I'm using the
hasselector to make sure the entire span that wraps the svg is removed, so there aren't any spacing quirks.hasisn't perfectly supported, but it's good enough.