Zhiqim Markup Language是知启蒙定义的、类似于JavaJavascript语法的语句和表达式,通常和XML/HTML混编在一起形成的一种新的标记语言。 ZML力求简单易用,目前支持常用的十二种标记语句和五十种表达式,在知启蒙技术体系中被用来代替JSP。

森中灵 最后提交于1月前 替换zhiqim.jar,重新打包
if.zml881B
<html>
    <#if hasAutoComplete>${hasAutoComplete}</#if>
    <#if status == 1>${status}<#elseif status == 2>${status}
    <#else>${status}</#if>
    <#if type == 1>${type}<#elseif type == 2>${type}<#else>${type}</#if>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    ${Styles.htmlOverflowHidden()}
    ${name}
    ${Styles.htmlOverflowHidden()}
    <#if !hasAutoComplete>
        ${hasAutoComplete}
    </#if>
</meta>
    <#if hasAutoComplete>
        ${hasAutoComplete}
    </#if>
</title>
    <#if hasAutoComplete>
        ${hasAutoComplete}
    <#else>
        ${hasAutoComplete}
    </#if>
</head>
    <#if status == 1>
        ${status}
    <#elseif status == 2>
        ${status}
    <#else>
        ${status}
    </#if>
</body>
    <#if type == 1>
        ${type}
    <#elseif type == 2>
        ${type}
    <#else>
        ${type}
    </#if>
</html>