obsidian-short-links icon indicating copy to clipboard operation
obsidian-short-links copied to clipboard

Note links inside nested Admonitions would have multi icons

Open Moyf opened this issue 10 months ago • 0 comments

I use Admonitions Plugin and css to make columns in my note.

But I found that if I put the links into multiple layered admonition blocks, it would get multiple icons, like this: image

The source code:

````ad-moy
```ad-moy
title: 笔记
[MoyNote](MoyNote/MoyNote.md)
[Obsidian](学习笔记/Obsidian/Obsidian.md)
[创作笔记](创作笔记/创作笔记.md)
```
````

If I put more block layer the icons would repeat more: image


Now I can use a css snippet to quick repair:

.link-icon + .link-icon {
    display: none;
}

But I think also need to feedback this stange situation 🤔

Moyf avatar Apr 15 '24 07:04 Moyf