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
Hello @aymerick and thanks for your library.
It seems raymond doesn't support partial blocks?
Where you would have 2 files: main.hbs and mypartial.hbs
main.hbs
mypartial.hbs
1. Main Container {{#> mypartial }} 2. Hello World {{/mypartial}}
3. Foo Bar {{> @partial-block }}
And the output would be:
1. Main Container 3. Foo Bar 2. Hello World
Am I missing something? 🤔
The text was updated successfully, but these errors were encountered:
Found a workaround:
1. Main Container {{> mypartial subpartial="other-partial.hbs" }}
3. Foo Bar {{> (subpartial) }}
other-partial.hbs
2. Hello World
The output is:
Note the dynamic partial (subpartial).
(subpartial)
Sorry, something went wrong.
No branches or pull requests
Hello @aymerick and thanks for your library.
It seems raymond doesn't support partial blocks?
Where you would have 2 files:
main.hbs
andmypartial.hbs
And the output would be:
Am I missing something? 🤔
The text was updated successfully, but these errors were encountered: