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;

our $VERSION = '0.18';

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

1;