What I’m trying to do
I want to paste easily and quickly that line
<sup>[link](sample link that is changeable )<sup>
whenever I want to add something that uses this format without a need of searching for it in my notes, copying and then pasting.
Is there any plugin which support something like that?
gino_m
November 27, 2023, 1:32pm
2
You can use a simple Templater Js snippet you can bind to a key combo.
<%*
clipboard = (await tp.system.clipboard());
tR += "<sup>[" + clipboard + "](" + clipboard + ")<sup>";
_%>
Needed:
Templater plugin and script with hot key set up
Link in clipboard
Line will be pasted at cursor position.
A similar thread where user shows how they set up Templater:
I find it easier to know what kind of links I have if for example all the external links are markdown links where it shows the gray link icon on the right side of the link, like the links below:
[image]
Now those were converted manually.
Link 1, is also external, but it’s not converted. Link 2 is internal, which I want to keep without the icon.
Is there a way to make this a default where external links are automatically formatted as markdown so they can have the icon automatically, instead o…
1 Like
system
Closed
December 9, 2023, 8:36pm
3
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.