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

templates.jsonTemplate.ftl.json Maven / Gradle / Ivy

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

${output(testdata)}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy