by Before Semicolon

<fragment/>

fragment tag details
Details
name fragment
type tag
attributes none
description A tag that will render only the content inside and can handle grouping render logic.

Usage Examples

<fragment #repeat="3">
	<label for="field-{$item}"></label>
	<input id="field-{$item}" type="text">
</fragment>
<fragment #if="$data.description">
	<h2>Description</h2>
	<p>{$data.description}</p>
</fragment>