sissbruecker / linkding

Self-hosted bookmark manager that is designed be to be minimal, fast, and easy to set up using Docker.
https://linkding.link/
MIT License
6.78k stars 323 forks source link

Make hyperlinks clickable in notes without special markdown syntax #743

Open brettinternet opened 6 months ago

brettinternet commented 6 months ago

Some markdown flavors parse links event without the hyperlink syntax [https://github.com](https://github.com). Is this possible to implement with the markdown parser that you use for the description/notes input?

noahhefner commented 6 months ago

Not an exact solution, but if you just want a shorter syntax for links, you can do:

<https://github.com/>
brettinternet commented 6 months ago

Oh thank you, I wasn't aware of that markdown syntax.

sissbruecker commented 5 months ago

This is what linkding uses: https://python-markdown.github.io/

Doesn't look like there is an existing extension for that.

brettinternet commented 5 months ago

Looks like there are some third party extensions that may do the trick if you're interested: https://github.com/Python-Markdown/markdown/wiki/Third-Party-Extensions#url-conversion. I think this could be valuable shorthand to provide additional links as context to each bookmark.

Related: https://github.com/Python-Markdown/markdown/issues/789