How to create a link that jumps to a part of the post?
How to create a link that jumps to a part of the post?
This involves some HTML in your Markdown, but isn’t very difficult. You’re just going to add an anchor tag (with an ID but no href) immediately above the heading, like so:
<a id=“some_examples”></a> ## Some ExamplesWhen you’ve got that, you can just use the anchor in a Markdown link:
I’ve provided a few [examples](#examples) to illustrate this concept.