I've added styling with an icon for all external links with help of this post.
Here's the styling:
a[href]:not(:where(
/* exclude hash only links */
[href^="#"],
/* exclude relative but not double slash only links */
[href^="/"]:not([href^="//"]),
/* domains to exclude */
[href*="//mydomain.de"],
)):after {
font-family: 'Font Awesome 5 Pro';
content: '\f0c1';
padding-left: 0.5rem;
}
Problem: There is an icon on external links on images, too.
Now I want to exlude these external links on images.
How can I do this?