obsidian-short-links
obsidian-short-links copied to clipboard
Note links inside nested Admonitions would have multi icons
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:
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:
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 🤔