blob: 4271e6d43c94633534f8e08a1b2572d0480cac2f [file] [log] [blame]
<#ftl ns_prefixes = {"D" : "http://example.com/eBook"}>
${doc.@@markup}
<#recurse doc >
<#macro book>
<html>
<head>
<title><#recurse .node.title></title>
</head>
<body>
<h1><#recurse .node.title></h1>
<#recurse>
</body>
</html>
</#macro>
<#macro chapter>
<h2><#recurse .node.title></h2>
<#recurse>
</#macro>
<#macro para>
<p><#recurse>
</#macro>
<#macro title>
<#--
We have handled this element imperatively,
so we do nothing here.
-->
</#macro>
<#macro @text>${.node?html}</#macro>