Support for HTML anchors on titles
Sometimes you want to reference parts of a page, for example, when adding a table of contents. Doing that in Markdown is quite easy.
Here's how you create a link to a section title within the page:
[Link to section](#some-section-title)
Finally, just add your titles as usual:
### Some Section Title
This markdown title will automatically create an anchor called “#some-section-title”.
Take a look at an example here
It's that simple!