有没有办法以可接受的方式提取树枝模板的源内容?当然我可以使用正则表达式模式,但我认为这不是最好的解决方案。
如果我有这个:
{% block test %}
This is a test!
{% endblock %}
我想通过使用块的名称来提取它:
This is a test!
答案 0 :(得分:0)
假设我们有文件:file.html.twig
和
{% block test %}
This is a test!
{% endblock %}
提取This is a test!
执行命令:
sed '/{%/ d' file.html.twig