对于我的生活,我无法弄清楚如何只包含.pug文件的特定部分。假设我有 tutorials.pug :
block tut1
p Some tutorial
block tut2
p Some other Tut
block tut3
p And then some other tut
然后在我的main.pug中我想去:
extends tutorials
h2 Hey, enjoy the second Tutorial!
block append tut2
根本没有任何其他块出现。这个简单的事情不可能吗?