this post was submitted on 02 Dec 2023
767 points (93.0% liked)

Technology

59143 readers
2264 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 5 points 11 months ago (1 children)

There are two proposals (https://github.com/LemmyNet/lemmy/issues/2987), one for a syntax specific to comments which would make your link the following:

#[email protected] (it might already work in some frontends, but it most likely won't yet)

and the second is using standard web technologies to register handlers for lemmy and then linking to posts like so (using my instance as an example):

navigator.registerProtocolHandler("web+lemmy", "https://lemmy.escapebigtech.info/search?q=%s", "Lemmy cross-instance link handler")

which would take you to the search page where your instance will show you the post on your own instance.

I personally think the best way is something in between, or rather implementing both

[โ€“] [email protected] 3 points 11 months ago

I prefer the simplicity of the first option but it's good to see progress