-
Is there a specific reason for why link syntax has URL first and title last? It is not very convenient to look at the very end of the line searching for title. I think title is much more important than the URL and should come first. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Ideally the entire link format will be concealled fully like you might find in emacs w/ orgmode, but that requires a bit more work on Neovim's end to be seamless. Current concealing should allow for it to work, but probably doesn't work perfectly like 1-2 character conceals Title comes after because it's modifying the link. It is consistent across other things like tags in which the object is defined first then modified |
Beta Was this translation helpful? Give feedback.
-
Heyo, descriptions can actually be placed in front of the link, like this:
The first line's |
Beta Was this translation helpful? Give feedback.
Heyo, descriptions can actually be placed in front of the link, like this:
[description]{# link}
. Do note that this syntax is an anchor versus a regular plain link. Anchors are the same thing as links when used standalone, so you can interoperate them as you see fit. Anchors just add an extra level of optional features:The first line's
[blog]
link will directly link tohttps://my-blog.example.com
, because Neorg will see that you've defined the location for[blog]
lower down below. This isn't a feature you need to use though, so[title]{link}
is completely valid on its own. Check here for more info if you want :)