sissbruecker / linkding

Self-hosted bookmark manager that is designed be to be minimal, fast, and easy to set up using Docker.
MIT License
5.32k stars 261 forks source link

Make hyperlinks clickable in notes without special markdown syntax #743

Open brettinternet opened 1 month ago

brettinternet commented 1 month 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 1 month ago

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

<https://github.com/>
brettinternet commented 1 month ago

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

sissbruecker commented 2 weeks ago

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

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

brettinternet commented 2 weeks 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