This is brilliant!
EDIT: You might prefer %S
to %s
if you don't want special characters to be escaped. %s
will turn the @ character into %40 in the URL, which means that if you write something like [email protected]
it will open lemmy.world/c/reddit%40lemmy.ml and it will give you a 404: couldnt_find_community
. However, %S
works as it doesn't do URL encoding.