java/src/converter/net.sf.webim.converter/templates/conv.ltp
2008-01-25 14:39:09 +00:00

20 lines
347 B
Plaintext

${template convert-}
${if helper.isNode(this)-}
${if helper.containsColon(tagName)-}
${call(`helper.replaceColon(tagName)`) this-}
${else-}
${this.getNodeDeclaration()-}
${call(convertList) children-}
</${tagName}>${end-}
${else-}
${this-}
${end-}
${end}
${template convertList-}
${foreach child in this-}
${call(convert) child-}
${end-}
${end}