erusev / parsedown

Better Markdown Parser in PHP
https://parsedown.org
MIT License
14.74k stars 1.12k forks source link

How to add anchor to Header h1,h2...h4 #659

Closed engharb closed 5 years ago

engharb commented 6 years ago

Hello,

is it possible to add anchor to headers i.e add ID for header? I have tried that in several ways but no success.

Example www.abc.com#My_header_1

header text here # {#anchorName} // but this does not work

zynicum commented 6 years ago

It is possible with Markdown-Extra:

here is my text with an [anchor](#theAnchorName) and so on ...
...
# My Header with anchor {#theAnchorName}
pbuttelli commented 1 year ago

Sorry for reviving this topic, but I have a question: is there any way, up to the date, to add anchors to headers without using any extra library? Thanks in advance!