yosssi / ace

HTML template engine for Go
MIT License
836 stars 89 forks source link

Nested tags in Ace? #55

Open carstenhag opened 9 years ago

carstenhag commented 9 years ago

Basically, in jade you can do

p
  | mark
  span my
  | words

and it outputs <p>mark<span>my</span>words</p>.

How is this done in Ace?

briemarie commented 9 years ago

I've solved this by just adding html span tags around what I need and it works fine.