Skip to content

Instantly share code, notes, and snippets.

@ArunMichaelDsouza
Created February 3, 2016 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArunMichaelDsouza/85d5e8c017dd29a8f42f to your computer and use it in GitHub Desktop.
Save ArunMichaelDsouza/85d5e8c017dd29a8f42f to your computer and use it in GitHub Desktop.
HAML "attrr-double quotes" grunt build config
module.exports = function(grunt) {
grunt.initConfig({
haml: {
dist: {
options: {
"double-quote-attributes": true,
style: 'expanded'
},
files: {
'index.html': 'index.haml'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-haml');
grunt.registerTask('default', ['haml']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment