erusev / parsedown

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

create same id for multiple h2 #772

Open ons-kapil opened 4 years ago

ons-kapil commented 4 years ago

Hi,

I've some markdown files that I've to render on the client's website. The markdown file have a table of content and the client has added same id for multiple heading. GitHub converts those as id, id-1, id-2, and so on but parsedown isn't able to convert the same.

for example :

Prerequisites - GitHub creates id as #prerequisites

Prerequisites - GitHub creates id as #prerequisites-1

But parsedown creates the same id for both sections.

Thanks in Advanced.