in reply to Local Module
You surely can. Just plop the new module somewhere like '/my_home_dir/perl_lib/HTML/BBCode.pm' and add an instruction to find it in your code, like this:
use lib '/my_home_dir/perl_lib'; use HTML::BBCode; [download]