XF 2.2 bdi in template?

briansol

Well-known member
What does <bdi> do?

sample context:
Code:
<xf:if is="$reactionId">
                                    <xf:reaction id="{$reactionId}" small="true" showtitle="true" appendtitle="{$total|number|parens}" />
                                <xf:else />
                                    <bdi>{{ phrase('all') }}</bdi> {$total|number|parens}
                                </xf:if>
 
Bi-Directional Isolation

The <bdi> tag isolates a part of text that might be formatted in a different direction from other text outside it.
 
Back
Top Bottom