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
according to the call spec, the element should remain and the contents be replaced by the template.
so:
<template data-sly-template.one>blah</template> <div data-sly-call="${one}"></div>
should output
<div>blah</div>
but the htlengine removes the outer element.
The text was updated successfully, but these errors were encountered:
the java version only ignores the child elements: https://github.com/apache/sling-org-apache-sling-scripting-sightly-compiler/blob/master/src/main/java/org/apache/sling/scripting/sightly/impl/plugin/CallPlugin.java
Sorry, something went wrong.
fix(call): do not unwrap call element
0c3bd13
fixes #58
fix(engine): do not unwrap call element (#59)
8963ead
chore(release): 2.2.1 [skip ci]
c171f00
## [2.2.1](v2.2.0...v2.2.1) (2019-05-09) ### Bug Fixes * **engine:** do not unwrap call element ([#59](#59)) ([8963ead](8963ead)), closes [#58](#58)
🎉 This issue has been resolved in version 2.2.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
tripodsan
Successfully merging a pull request may close this issue.
according to the call spec, the element should remain and the contents be replaced by the template.
so:
should output
but the htlengine removes the outer element.
The text was updated successfully, but these errors were encountered: