Joker / jade

Jade.go - pug template engine for Go (golang)
BSD 3-Clause "New" or "Revised" License
354 stars 37 forks source link

Variables inside mixins #13

Closed gabstv closed 6 years ago

gabstv commented 7 years ago

Variables inside a mixin don't work:

div
  + example
  | does not work
div
  img(src="{{.Foo}}")
  | works

mixin example
  img(src="{{.Foo}}")