Kotlin / kotlinx.html

Kotlin DSL for HTML
Apache License 2.0
1.61k stars 132 forks source link

Freemarker Template Support #100

Closed befora closed 5 years ago

befora commented 5 years ago

Is it possible to use a freemarker template such as

<#list books as book>
 <tr>
  <td class="bookId">${book.id} <td class="bookTitle">${book.Title}
 </tr>
</#list>
befora commented 5 years ago

Nevermind, this defeats the purpose of kotlin html dsl. I just iterate over the list and add td.