-
Notifications
You must be signed in to change notification settings - Fork 433
nofollow
trentm edited this page Sep 18, 2012
·
1 revision
Add rel="nofollow"
to add <a>
tags with an href. See http://en.wikipedia.org/wiki/Nofollow.
For example:
[link](http://example.com)
Becomes:
<p><a rel="nofollow" href="http://example.com">link</a></p>
Note that this will also add the rel="nofollow"
to links in raw HTML in the input.
A limitation of the current implementation is that a duplicate rel
attribute will be added if the raw HTML link already has one.
(Return to Extras page.)