All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.xmlTemplate.ftl.xml Maven / Gradle / Ivy

There is a newer version: 1.38.1
Show newest version
<#function output item>
    
    <#if item?is_hash>
        <#assign obj = "">
        <#list item as k, v>
            
            <#if k?starts_with("__")>
                <#assign obj += output(v)>
            <#else>
                <#assign obj += '<${k}>' + output(v) + "">
            
        
    
    <#elseif item?is_sequence>
        <#assign obj = "">
        <#list item as v>
            <#assign obj += output(v)>
        
    
    <#else>
        <#assign obj = item>
    
    <#return obj>


${output(testdata)}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy