Vincent Prouillet
Vincent Prouillet
> The other change I made was adding a no_verify feature flag that returns an error when Validation.validate_signature is true. Why would you ever want that?
This is kind of expected, the Algorithm enum only includes things that this library can handle. This library also intentionally does not support JWE to not get too crazy in...
No, because then it looks like the library is supporting them
I'm not sure it would be much simpler than https://github.com/Keats/jsonwebtoken/blob/master/examples/auth0.rs where you can easily tweak everything.
It would need to come as a PR
I have no strong feeling about that. I don't really see the usecase though so I'd like to see more people wanting that
> I just don't understand the logic of not being able to reuse a block elsewhere in the template ^^" (is there an actual reason?) In the first template of...
Define in Hugo is just block in Tera. What you need is a way to render the content of a block, not redefine it. I'm not sure if the golang...
Woops didn't see @paulcmal message I think `useblock` makes sense and shouldn't be too hard to implement
You can `set` the variables once depending on the variables present and render them. Eg ``` {% if page %} {% set title = page.title %} {% else %} ......