We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Surrounded an ampersand (i.e. &) with a <span> with a styled class.
<span>
Input:
<p>{{ "this & that" | amp }}</p>
Output:
<p>This <span class="amp">&</span> That</p>
Example CSS:
.amp { font-family: serif; font-style: italic; color: #a9a9a9; }