Current File : /home/escuelai/public_html/it/vendor/iamcal/lib_autolink/README.md
# lib_autolink - PHP HTML link formatting library

[![Build Status](https://secure.travis-ci.org/iamcal/lib_autolink.png)](http://travis-ci.org/iamcal/lib_autolink)

Find URLs in HTML that are not already links, and make them into links.


## Usage

    include('lib_autolink.php');


    # simple mode
    $html = autolink($html);

    # truncate URLs longer than 20 characters
    $html = autolink($html, 20);

    # insert some magic into the <a> tags
    $html = autolink($html, 30, ' class="mylink"');

    # By default if the display url is truncated, a title attribute is added to the link, if you don't want this, add a 4th parameter of false
    $html = autolink($html, 30, ' class="mylink"', false);

    # link up email address
    $html = autolink_email($html);


## Testing

If you have perl's <a href="http://search.cpan.org/dist/Test-Harness/">Test::Harness</a> installed (you almost certainly do), you can 
run the tests using:

    prove --exec 'php' t/*.t