Andreas Hager
Andreas Hager
Hey everyone, just curious if you use jte on your projects and what for? I'll make a start - I use jte for HMTL rendering of - the jte website:...
It would be nice to to have a setting to produce compressed ouput for HTML templates, by removing all unneeded indentations from the output. For instance this template: ```html @if(true)...
When we provide a custom output `Document` to `W3CDom#convert`, we receive a `NullPointerException` in the `W3CBuilder` constructor. I've added a test that demonstrates the behavior. Here's the stacktrace from that...
Backticks in comments end the content block, causing a compile error. ``` !{var content = @`Hello there!`;} ${content} ```
Draft for jte Modules. See discussion in #278
Quoting [metalhead-001](https://www.reddit.com/user/metalhead-001/) from reddit, who asked about this in the jte 3 comments. > I really wish the Spring project would adopt this as one of the supported Spring Boot...
Noticed in IntelliJ 2023.2.2, when having a nested class inside a jte template, for instance @param Foo.Bar bar and alt+enter => "Add import for Foo.Bar" does not add an import...
Example: ``` @template.foo( name = "name", label = localize("name.label"), readonly = action.getName() == null || action.getName().isEmpty() ) ``` Typing a closing bracket after isEmpty() doesn't do anything.
``` @template.foo( name = "name", label = localize("name.label"), readonly = action.getName() != null ) ``` `action.getName() !` is highlighted as error.
Noticed in IntelliJ 2023.2.2, when having a nested class inside a jte template, for instance `@param Foo.Bar bar` and alt+enter => "Add import for Foo.Bar" causes an exception and does...