From d259cd0d3258c98038cdfb1c9b44c2116ad96e48 Mon Sep 17 00:00:00 2001 From: trag1c Date: Fri, 2 Feb 2024 15:32:23 +0100 Subject: [PATCH] Made hyperlink on homepage correctly redirect to GitHub (#9784) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Closes #9783. Feels hacky because of the different key so there *might* be a nicer way to do this 😄 ## Test Plan Tested locally with `mkdocs serve`. --- scripts/generate_mkdocs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/generate_mkdocs.py b/scripts/generate_mkdocs.py index 8ab84fe337..48b4acce3c 100644 --- a/scripts/generate_mkdocs.py +++ b/scripts/generate_mkdocs.py @@ -51,6 +51,7 @@ LINK_REWRITES: dict[str, str] = { "https://docs.astral.sh/ruff/installation/": "installation.md", "https://docs.astral.sh/ruff/rules/": "rules.md", "https://docs.astral.sh/ruff/settings/": "settings.md", + "#whos-using-ruff": "https://github.com/astral-sh/ruff#whos-using-ruff", }