bootstrap_package icon indicating copy to clipboard operation
bootstrap_package copied to clipboard

Add format.html for text from fields of abstract records and the like

Open aksenovaa opened this issue 4 years ago • 0 comments

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>

aksenovaa avatar Oct 07 '21 08:10 aksenovaa