Hello. I am working on a website that uses greek as the default language.
There is some content that gets entered as normal sentence case text but then is converted to uppercase using css.
fore example “μέλι” is converted to “MΈΛΙ”.
What I would like to do is use php to remove the accents so that “μέλι” becomes “MΕΛΙ”.
I imagine something like that would work best:
<?= $product->text()->noAccents() ?>
Any of how to implement such a method with Kirby.
Thanks