remove-markdown-links 1.0.0

Turns `[example](https://example.com)` into `example`. That's it
Documentation
on:
  push:
    branches:
      - main

permissions:
  contents: write
  pull-requests: write

name: release-please

jobs:
  release-please:
    runs-on: ubuntu-latest
    steps:
      - uses: google-github-actions/release-please-action@v4
        id: release
        with:
          release-type: rust

      # Checkout and publish if release created
      - uses: actions/checkout@v4
        if: ${{ steps.release.outputs.release_created }}
      - uses: actions/cache@v4
        if: ${{ steps.release.outputs.release_created }}
        with:
          path: |
            ~/.cargo/bin/
            ~/.cargo/registry/index/
            ~/.cargo/registry/cache/
            ~/.cargo/git/db/
            target/
          key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
      - uses: katyo/publish-crates@v2
        if: ${{ steps.release.outputs.release_created }}
        with:
            registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}