I need to set the data-sly-test in order to achieve 'true' as test result comparing two strings in case insensitive way.
<div data-sly-test="${ properties.jcr:language == 'en'}">true</div>
where value of properties.jcr:language
is 'EN'. data-sly-test in this case returns 'false' but I need that the result is 'true'.
Is it possible ?
Thanks in advance