instiki/vendor/plugins/erubis/test/data/users-guide/example10_x.result
2010-07-04 08:51:53 -05:00

18 lines
362 B
XML

$ erubis -x --pi example10.xhtml
_buf = ''; _buf << '<?xml version="1.0" ?>
';
lang = 'en'
list = ['<aaa>', 'b&b', '"ccc"']
_buf << '<html lang="'; _buf << (lang).to_s; _buf << '">
<body>
<ul>
'; for item in list
_buf << ' <li>'; _buf << Erubis::XmlHelper.escape_xml(item); _buf << '</li>
'; end
_buf << ' </ul>
</body>
</html>
';
_buf.to_s