NAME Template::Plugin::VimColor - TT plugin for Text::VimColor SYNOPSIS // in your template [% USE VimColor %]
[% FILTER vimcolor set_number => 1 -%] #!/usr/local/bin/perl use strict; use warnings; print "Hello, World!\n"; [% END -%]// for another language
[% FILTER vimcolor filetype => 'ruby' -%] #!/usr/local/bin/ruby puts "Hello, World"; [% END -%]DESCRIPTION This plugin allows you to mark up your code in your document with VimColor style. You probably need to define styles for marked strings like this, SEE ALSO Template, Text::VimColor TODO Caching the marked output with Cache::Cache like Apache::VimColor. Patches welcome :) AUTHOR Naoya Ito