in reply to Using YAML with Template Toolkit

You can also use Template::Plugin::YAML directly from TT code:
[% USE YAML %] [% YAML.dump(variable) %] [% YAML.dump_html(variable) %] [% value = YAML.undump(yaml_string) %] [% YAML.dumpfile(filename, variable) %] [% value = YAML.undumpfile(filename) %]

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.