Re: ensure_starts_with issue
FOX427 <[email protected]> Thu, 4 Jun 2015 09:35:47 -0700 (PDT)
| Newsgroups | gmane.comp.web.freemarker.user |
|---|---|
| Message-ID | <[email protected]> |
Sorry for late response.
in XML:
<items>
<entry>
<label>item 1</label>
<url>http://www.ibm.com</url>
</entry>
<entry>
<label>item 2</label>
<url>www.usatoday.com</url>
</entry>
</items>
in ftl:
<#list items.entry as entry>
${entry.label} <${entry.url}> <br>
</#list>
in page source:
item 1 <http://www.ibm.com> <br>
item 2 <www.usatoday.com> <br>
--
View this message in context: http://freemarker.624813.n4.nabble.com/ensure-starts-with-issue-tp4655468p4655482.html
Sent from the freemarker-user mailing list archive at Nabble.com.
------------------------------------------------------------------------------