Skip to content
  • Ben Gamari's avatar
    Drop redundant, empty links · 531ec4f0
    Ben Gamari authored
    Previously there were many repeated links of the form,
    ```
    [text](url)[](url)
    ```
    This drops the second, redundant link via
    ```
    sed -i -r -e 's%\)\[\]\([^)]+\)%)%g' $(find -iname '*.md')
    ```
    531ec4f0