We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Surrounded two or more consecutive capital letters, perhaps with interspersed digits and/or periods, in a <span> with a styled class.
<span>
Input:
<p>Today I went {{ "SCUBA" | caps }} driving with my friend from {{ "I.B.M" | caps }}.</p>
Output:
<p>Today I went <span class="caps">SCUBA</span> driving with my friend from <span class="caps">I.B.M.</span>.</p>
Example CSS:
.caps { font-size: .9rem; text-transform: uppercase; }