HOW TO: Create Clickable Links In Markdown (.md)?

Опубликовано: 05 Апрель 2026
на канале: chinamatt
7,256
86

############### UPDATE #################
1. Create links between sections:

Clicking [this link](#11-my-header) will scroll to `# 1.1 My Header`.
Some content
1.1 My Header

Seems like need all lower case and no `.`
#######################################

How To Create Clickable Links In Markdown (.md)?

1. Create links between sections:
Clicking [this link](#1.1-My-Header) will scroll to `#1.1-My-Header`.
1.1 My Header

2. You can also create clickable links to another file:
test page
Clicking [this link](./test1.md) will open `other-file.md` and scroll to `# my header`

3. Clickable link to a website:
Clicking [this link](https://www.google.com) will take you to Google.