Eric Bussieres
Eric Bussieres
Sorry forgot to submit the review. You should see it now
Great PR, I'll gladly accept it when test coverage is gonna be better. Can you adjust it ?
I'm currently using Pebble in a spring mvc application for a transactional website. I was using Thymeleaf and just switched to Pebble mainly due by performance issues with Thymeleaf. Rendering...
It makes sense if you are using a FileLoader. But what if you have a custom loader which loads templates from database ? Or if you have a ServletLoader ?...
An improvement was made here with and/or operators https://github.com/PebbleTemplates/pebble/issues/398. Can you try something like ``` {% if p is not null and p.alt is not empty %}{{ p.alt }}{% endif...
Can you submit a test case for it ?
I don't think that strict mode is really used and you're not the first to have this kind of request for this particular use case. I think that a potential...
Did you try to set newLineTrimming to false ?
We already had a conversation on this https://github.com/PebbleTemplates/pebble/pull/494#issuecomment-629691422
@rumfuddle No it's not just an upgrade of a dependency. You need to define a MethodAccessValidator [implementation](https://github.com/PebbleTemplates/pebble/blob/master/pebble/src/main/java/com/mitchellbosecke/pebble/attributes/methodaccess/MethodAccessValidator.java) Then If you use pebble-spring: - Define a bean which implements `MethodAccessValidator` ```...