Skip to main content

Autolink

Overview

An auto link is a hyperlink to a given url, represented by an anchor tag (<a>). The link is enclosed between an < and >.

Example Syntax

<http://www.google.com>
<https://www.google.com>
<www.google.com>
<p>
<a href="http://www.google.com">http://www.google.com</a>
</p>
<p>
<a href="https://www.google.com">https://www.google.com</a>
</p>
<p>
<a href="www.google.com">www.google.com</a>
</p>