Quick: Since Bootstrap barrio moves input submit buttons into HTML button elements, those button values get double encoded generating the annoying > to be displayed instead of >. This simple fix (with a 2 hour research.. damn) solves that problem.
The Fix
Use the raw value for the button output since the preprocessor and every other twig output chain before this already escaped the values we want to show. In practice what we do here is:
What is the problem?
See #11
Quick: Since Bootstrap barrio moves input submit buttons into HTML button elements, those button values get double encoded generating the annoying
>
to be displayed instead of>
. This simple fix (with a 2 hour research.. damn) solves that problem.The Fix
Use the raw value for the button output since the preprocessor and every other twig output chain before this already escaped the values we want to show. In practice what we do here is: