You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Parsedown module (which parses markdown into html) does not generate anchors with markdown headings.
The expected behavior is to put an anchor with a name that can be referenced in the browser's url/address bar.
For the input:
# test test
The expected output would be:
<h1><aname="test-test">test test</a></h1>
Or something similar to that effect. The key importance here is the anchors are dynamically generated, so that the user does not have to invent all of the anchors themselves while documenting something into the site.
The text was updated successfully, but these errors were encountered:
Currently, the Parsedown module (which parses markdown into html) does not generate anchors with markdown headings.
The expected behavior is to put an anchor with a name that can be referenced in the browser's url/address bar.
For the input:
# test test
The expected output would be:
Or something similar to that effect. The key importance here is the anchors are dynamically generated, so that the user does not have to invent all of the anchors themselves while documenting something into the site.
The text was updated successfully, but these errors were encountered: