Miguel Gamboa de Carvalho
Miguel Gamboa de Carvalho
I have successfully configured the spring-comparing-template-engines with JMH working correctly with Spring MVC and all template engines of this project, except for JSP. This way we are evaluating the performance...
The “bytecode-injected fields” that you are referring to, are static final fields initialized with fields’ addresses obtained through the sun.misc.Unsafe. Yet, remember that you cannot invoke the sun.misc.Unsafe on the...
Thank you @3t-service for your feedback. Indeed, for that example of partial we cannot directly invoke `.form()` on view. You are right, one possible workaround is to use `defineRoot()`. Even...
Great catch @3t-service! There is a bug indeed in dynamic processing that is not dealing with the case where the dynamic block throws an exception leaving the view in inconsistent...
Yes you are right. There a couple of concepts intrinsic to HtmlFlow that should be better explained. Like the difference between using StaticHtml and DynamicHtml. `.dynamic()` or `.of()`. Interface `HtmlTemplate`....
I am planning to work on this and make a major refactoring on Documentation and Readme. I am also considering anew web theme for Documentation. Maybe this one: https://themes.3rdwavemedia.com/demo/coderdocs/docs-page.html
To do: evaluate the chance of migrating HtmlFlow site and documentation to https://github.com/pmarsceill/just-the-docs
Certainly you can. HtmlFlow is unopinionated and provides you several ways of doing it. Btw you can do it both in Dynamic and Static HTML. You may find many examples...
Thanks @volgin your feedback is important. Unfortunately I am overwhelmed and planning to enhance documentation for more than on year. But I did not have time yet. I have a...
The purpose of `dynamic` is usually related to data binding. All HTML inside the lambda passed to `dynamic` (e.g. `el.text(model.title)`) is not considered static and thus, the resulting HTML may...