I'd like to generate a comment tree.
<ul>
<li> First comment
<ul>
<li> reply to first comment
<li> another reply to first comment
</ul>
</li>
</ul>
I have a Tree (Entity Comment)
structure.
I would want to have all the benefice of hamlet (#{commentContent comment}
will be protected against XSS).
How could I achieve a recursive Html rendering with Hamlet?