Open jgthms opened 7 years ago
Found a workaround:
main.hbs
1. Main Container
{{> mypartial
subpartial="other-partial.hbs"
}}
mypartial.hbs
3. Foo Bar
{{> (subpartial) }}
other-partial.hbs
2. Hello World
The output is:
1. Main Container
3. Foo Bar
2. Hello World
Note the dynamic partial (subpartial)
.
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? 🤔