Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法两次渲染模板?例如:
{{ myTemplate }}
在我的模板上下文中,myTemplate => "{{ 2 + 2 }}"最终输出将变为 4?换句话说:
myTemplate => "{{ 2 + 2 }}"
"{{ myTemplate }}" => "{{ 2 + 2 }}" => "4"
Pebble(或Twig,因为它们相似)可能会发生这样的事情吗?