All Questions
3
questions
0
votes
1
answer
306
views
Gulp Jade and HTML templates
I have an AngularJS project that I have existing HTML templates and I want to also start using Jade templates. I want to create a single gulp task for the templates, but I am not sure how I can skip ...
1
vote
1
answer
956
views
forcing compilation Jade partials with utf8 charset in Gulp
How to force Jade files to be compiled to HTML utf8 encoding?.
I am using Gulp. I have multiple templates that are included (using AngularJS) into index.html, so, the meta tag
head
meta(content='...
1
vote
2
answers
551
views
How to set default doctype in Gulp-Jade
I am having a problem with gulp-jade: The Jade compiler always adds a value to HTML attributes without a value, which breaks my AngularJS setup. (e.g. div(ui-view) becomes <div ui-view="ui-view">...