Did you see my mentioning about addhrefs last week? addhrefs
is a python module that turns a text full of URLs and email addresses into links. For example:
>>> from addhrefs import addhrefs
>>> print addhrefs("""Visit www.peterbe.com
and email mail@peterbe.com""")
Visit <a href="https://www.peterbe.com">www.peterbe.com</a>
and email <a href="mailto:mail@peterbe.com">mail@peterbe.com</a>
Then I saw this instruction on google.com about Preventing comment spam
They suggest you add a rel="nofollow"
to links in your comments on your blog and with a bit of luck this will reduce the amount of comment spam you get on your blogs. So, how to do that?