We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Starting in 2.3.0, nested elements are resulting in an infinite loop. Example:
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" xmlns:th="http://www.thymeleaf.org"> <body> <div layout:fragment="comment"> Comment structure <div layout:fragment="comment-details">Default comment details</div> </div> <div layout:include="~{::comment}"> <div layout:fragment="comment-details"> Top level comment <div layout:include="~{::comment}"> <div layout:fragment="comment-details">Nested comment</div> </div> </div> </div> </body> </html>
The text was updated successfully, but these errors were encountered:
Create test to replicate #178
6f7c68c
34cb31d
Seems this got busted when #166 was added. Can't believe there wasn't a test to catch it, but there is now! Fix is now in 2.4.0-SNAPSHOT.
2.4.0-SNAPSHOT
Sorry, something went wrong.
Duplicate tests for insert & replace processors, #178
380cb9b
ultraq
No branches or pull requests
Starting in 2.3.0, nested elements are resulting in an infinite loop. Example:
The text was updated successfully, but these errors were encountered: