11.2. Thymeleaf解析器级别注释块
<!--/* This code will be removed at Thymeleaf parsing time! */--><!--/*-->
<div>
you can see me only before Thymeleaf processes me!
</div>
<!--*/--><table>
<tr th:each="x : ${xs}">
...
</tr>
<!--/*-->
<tr>
...
</tr>
<tr>
...
</tr>
<!--*/-->
</table>Last updated