Markdown Tips

Markdown Tips

PURPOSE

Tips for writing a blog using Markdown


You can learn Markdown Syntax from this guide.


Adding a superscript in Markdown

Markdown supports the use of certain HTML tags such as <sup> & <sub> to create superscript and subscript elements.

<sup>superscript</sup>
<sub>subscript</sub>

Linking content within the current document in Markdown

We can use the <a> tag to create links that reference some other part of the same document.

Click Me to scroll to reference

<a name="reference">Referenced using `a` tag</a>
[reference](#reference)

I
will
add
some
arbitrary
lines
in
between
to
demonstrate
the
working
of
self-referencing
links

Referenced using a tag


Combining supertitle with self-linking

Clickhere

I
will
add
another
set
of
arbitrary
lines
in
between
to
demonstrate
the
working
of
self-referencing
links
with
superscript

Pretty cool, huh?


Tagged in markdown