The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Text::Trac::Macro::Timestamp;

use strict;
use warnings;

sub process {
    my $class = shift;
    return '<b>' . localtime(time) . '</b>';
}

1;