Log in Sign up

How do I add an anchor tag?

I tried to search for that, but the search on the questions page is not working.


a year ago, 1 replies   posts   markdown   Edit question

The syntax for a link in markdown is like so:

[Wikipedia](https://wikipedia.org)

In markdown you can create an internal link [link text](#fragment) for an "internal" link. You can make the fragment in raw html with <a id="fragment"></a>, but this may not be necessary: blot automatically assigns the id property of a heading to be the text of the heading but all lowercase and special characters replaced with -.

Answered a year ago ยท Edit answer