I use a table of contents in every article. Sometimes I want a different anchor (id) for a specific heading. How can I achieve this?
Example
## My heading -> <h2 id="my-heading">My heading</h2>
Instead of id="my-heading" I want id="heading-1".
Is there a Markdown way of doing it or is
<h2 id="heading-1">My heading</h2>
the only solution?