I'm new in thymeleaf and I try to create a template. My problem is this code:
CODE
<h1 th:text="${header.title}" >
title
<small th:text="${header.subtitle}" >Subtitle</small>
</h1>
I want to get this output:
<h1> TITLE <small> SUBTITLE</small> </h1>
But this is the real output:
<h1> TITLE </h1>
How can I do so it doesn't remove what is inside of "small"?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…