bootstrap_package
bootstrap_package copied to clipboard
Add format.html for text from fields of abstract records and the like
Add format.html for text from fields of abstract records and the like, For example in MenuCardList.html
<f:if condition="{page.data.subtitle}">
<h4 class="card-subtitle">
<f:format.crop maxCharacters="{settings.menucard.subtitle.crop}">{page.data.subtitle-> f:format.html()}</f:format.crop>
</h4>
</f:if>
<f:if condition="{page.data.abstract}">
<p class="card-text"><f:format.crop maxCharacters="{settings.menucard.abstract.crop}">{page.data.abstract-> f:format.html()}</f:format.crop></p>
</f:if>