Cristian Ghezzi
Cristian Ghezzi
You might fix it this way: 1) do not set the messageResolver in thymeleafTemplateEngine() (see official docs): ``` @Bean public SpringTemplateEngine thymeleafTemplateEngine() { SpringTemplateEngine templateEngine = new SpringTemplateEngine(); templateEngine.setTemplateResolver(templateResolver); return...
I'd like to have `th:alt="${emptyString}"` output an empty alt, but maybe there should be a trick that doesn't break the standard behaviour of removing empty attributes. How about some kind...
@trinhnx you can see an example implementation in the YadaInputTagProcessor class [here](https://github.com/xtianus/yadaframework/blob/master/YadaWeb/src/main/java/net/yadaframework/web/dialect/YadaInputTagProcessor.java). That's not a simple example though. I don't have a test that you can easily run.
I made some experiments with a simple use case. Given this HTML ``` hello1 Inside1 hello2 Inside2 ``` and this processor implementation ``` public class TestTagProcessor extends AbstractElementModelProcessor { public...
To clarify what I'd like to do, I fixed my problem by implementing a custom text tag like so: ``` Content goes here ``` It would be much nicer if...
CSS workaround does not work for me in v3.6.0
Maybe you need to use "muted callbacks" to prevent looping https://amsul.ca/pickadate.js/api/#muted-callbacks
As a workaround for this specific issue I'm turning all pages to B&W with this injected CSS: `document.documentElement.style.filter = 'grayscale(100%)'; ` This is giving me no diff errors on the...