How do I add an anchor tag?
I tried to search for that, but the search on the questions page is not working.
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 -
.