This plugin add several icons next to the note headings that you can click on to copy markdown link of the specific heading.
npm install joplin-plugin-copy-anchor-linkThis plugin add several icons next to the note headings that you can click on to copy markdown link of the specific heading.
Click on the icon to copy link to the particular heading.
O is Only-Link, L is Local, G is Global, I is ID, H is Heading, F is Full:- OI: #welcome-to-joplin
- OF: :/524d6874790f4e33a1dd2f5b2463c6cb#welcome-to-joplin
- LI: welcome-to-joplin
- LH: Welcome to Joplin!
- GI: welcome-to-joplin
- GH: Welcome to Joplin!
- (Default) GF: 1. Welcome to Joplin! # Welcome to Joplin!
To enable any or all of them to suit your workflow by adding their respectable css to userstyle.css
```
.cai-oi { display: inline; }
.cai-of { display: inline; }
.cai-li { display: inline; }
.cai-lh { display: inline; }
.cai-gi { display: inline; }
.cai-gh { display: inline; }
If you want to hide the default GF format add the following line:
``
.cai-gf { display: none; }
:`css
h1 span.copy-anchor-icon, h2 span.copy-anchor-icon, h3 span.copy-anchor-icon {
display: none;
}
h1:hover span.copy-anchor-icon, h2:hover span.copy-anchor-icon, h3:hover span.copy-anchor-icon {
display: inline;
}
``