假设我有以下模板:
- .../main.vm
- .../sections/footer.vm
假设 main.vm 看起来像这样:
Hello world, this is the main template, it's name is $name
This template also has the following footer:
#parse("sections/footer.vm")
假设 footer.vm 看起来像这样:
Hi there, I'm the footer! My file name is $name!
我希望 main.vm 中的 $name 为“main.vm”,而 footer.vm 中的 $name 为“sections/footer.vm”。这样的事情可能吗?