<div dir="ltr">TemplateToolkit default tags are [% hi %]<br><div><br>ref: <a href="http://search.cpan.org/~abw/Template-Toolkit-2.26/lib/Template/Manual/Config.pod#START_TAG,_END_TAG">http://search.cpan.org/~abw/Template-Toolkit-2.26/lib/Template/Manual/Config.pod#START_TAG,_END_TAG</a><br><br>Dancer2 tutorial mentions this default<br>ref: lib/Dancer2/Tutorial.pod<br><br></div><div>In Dancer2 I had to configure these to get going:<br><br>template:   "template_toolkit"<br>charset: UTF-8<br>engines:<br>    template:<br>        template_toolkit:<br>          ENCODING: utf8<br>          INCLUDE_PATH: 'views'<br>          start_tag: '[%'<br>          end_tag:   '%]'<br><br></div><div>But then, the rendered template contained <% content %> in place of my tt. To get my code working, I changed my .tt files to use <% hi %> and changed the config tags:<br>          start_tag: '<%'<br>          end_tag:   '%>'<br><br></div><div>Is there an easier way to use Template::Toolkit in Dancer2? Yes, I should use Dancer2's simple template.<br></div><div>Thanks<br></div><div>Rick<br></div><div><br></div></div>