Skip to content

Instantly share code, notes, and snippets.

@rachelhyman
Last active February 21, 2024 18:20
Show Gist options
  • Star 52 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save rachelhyman/b1f109155c9dafffe618 to your computer and use it in GitHub Desktop.
Save rachelhyman/b1f109155c9dafffe618 to your computer and use it in GitHub Desktop.
Github README anchor links

To create anchor links that jump down to different sections of a README (as in an interactive table of contents), first create a heading:
#Real Cool Heading

The anchor link for that heading is the lowercase heading name with dashes where there are spaces. You can always get the anchor name by visiting the README on Github.com and clicking on the anchor that appears when you hover to the left of the heading. Copy everything starting at the #:
#real-cool-heading

Wherever you want to link to your Real Cool Heading section, put your desired text in brackets, followed by the anchor link in parentheses:
[Go to Real Cool Heading section](#real-cool-heading)

See! Easy: Go to Real Cool Heading section

#Real Cool Heading
This is a real cool heading with some real cool content.

@timony
Copy link

timony commented Sep 13, 2023

[Fancy link](wiki#section-name) for ### Section name
works for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment