我正在尝试从父Info
文件读取哈巴狗本地变量,但没有显示值
.pug
//- index.pug
- var title = "This is title";
- var pagename = "This is pagename";
p #{title}
include includes/content.pug
预期结果是:
//- includes/content.pug
p #{pagename}
但是它在第二个变量上什么也没显示:
<p>This is title</p>
<p>This is pagename</p>
我该如何解决?