summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-06-11 10:06:49 -0500
committerJesse Luehrs <doy@tozt.net>2013-06-11 10:06:49 -0500
commit4e7b8e1dc05eaa72e1c929fa6c524ad79da68f65 (patch)
treef588b3c0ddef3b95f3b1fc67e3717e1bc780ca51
parent7c83b2cf1ae86f7ee0149631e62841023baa9797 (diff)
downloadspreadsheet-template-4e7b8e1dc05eaa72e1c929fa6c524ad79da68f65.tar.gz
spreadsheet-template-4e7b8e1dc05eaa72e1c929fa6c524ad79da68f65.zip
don't try to escape html
-rw-r--r--lib/Spreadsheet/Template/Processor/Xslate.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Spreadsheet/Template/Processor/Xslate.pm b/lib/Spreadsheet/Template/Processor/Xslate.pm
index 6086f0f..e86b106 100644
--- a/lib/Spreadsheet/Template/Processor/Xslate.pm
+++ b/lib/Spreadsheet/Template/Processor/Xslate.pm
@@ -9,7 +9,7 @@ has xslate => (
is => 'ro',
isa => 'Text::Xslate',
lazy => 1,
- default => sub { Text::Xslate->new },
+ default => sub { Text::Xslate->new(type => 'text') },
);
sub process {