Pug嵌入

 

普通变量直接嵌入

- var title = "On Dogs: Man's Best Friend";
- var author = "enlore";
- var theGreat = "转义!";

h1= title
p #{author} 笔下源于真情的创作。
p 这是安全的:#{theGreat}

等价于-->

On Dogs: Man's Best Friend

enlore 笔下源于真情的创作。

这是安全的:<span>转义!</span>

 

Js表达式嵌入

- var msg = "not my inside voice";
p This is #{msg.toUpperCase()}

等价于-->

This is NOT MY INSIDE VOICE

 

字符串嵌入,不转义

- var riskyBusiness = "我希望通过外籍教师 Peter 找一位英语笔友。";
.quote
  p 李华:!{riskyBusiness}

等价于-->
class="quote">

李华:我希望通过外籍教师 Peter 找一位英语笔友。

 

你可能感兴趣的:(Pug嵌入)