NAME

Template::Plugin::AutoLink - TT filter plugin to replace URL and e-mail address with hyperlink automatically.

SYNOPSIS

# in template

[% use AutoLink %]

[% FILTER auto_link target='_blank'  %]

Search here
http://www.google.com

[% END %]

# result in
Search here
<a href="http://www.google.com" target="_blank">http://www.google.com</a>

DESCRIPTION

Template::Plugin::AutoLink is filter plugin for TT, which replace URL and e-mail address with hyperlink automatically.

AUTHOR

Yasuhiro Horiuchi <yasuhiro@hori-uchi.com>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.