matrix-org / synapse

Synapse: Matrix homeserver written in Python/Twisted.
https://matrix-org.github.io/synapse
Apache License 2.0
11.82k stars 2.13k forks source link

Use full GitHub links instead of bare issue numbers. #16637

Closed clokep closed 11 months ago

clokep commented 11 months ago

This makes it so you can just click on the link in editors / GitHub and it properly works.

clokep commented 11 months ago

Hopefully this was a sed job!

grep -rE "#\d+" . | grep -v ".ruff-cache" | grep -v "state.json" | grep -v "Binary file" | grep -E "#\d{2,}" | grep -v "\.css:" | grep -v "\.html:" | grep -v "\.json:" | grep -vE "\[\\\\?\#\d+\]"

and then manually changing them via a regex in my editor. But...not too bad.