Skip to content
  • Ben Gamari's avatar
    Rewrite superfluous issue links · 56738617
    Ben Gamari authored
    Many issues in the wiki were unnecessarily links:
    ```
    ... patch posted in [\#1346](ghc#1346).
    ```
    This rewrites these as `#1346` using
    ```bash
    sed -i -r -e 's/\[\\#([0-9]+)\]\([^)]+\/\1\)/#\1/g' $(find -iname '*.md')
    ```
    And manually eyeballing the result.
    56738617