after installing erusev/parsedown library package i want to make internal links with Markdowns
like with this code:
$Parsedown = new Parsedown();
echo $Parsedown->text("* [Hello](#hello)
* [Hello World](#hello-world)
* [Another section](#new-section)
## Hello
### Hello World
## New section");
in this code i expect ## New section
must be have id
, but after show this markdown this part of text doesn't have any id
to make simple internal link