Matt Diebolt

Results 6 comments of Matt Diebolt

Have you seen the getting started section of the README? https://github.com/dr-coffee-labs/hamlet#getting-started There is also a widget page, showing how some simple templates and models interact. http://hamlet.coffee/garden/ If those are still...

Closed due to inactivity.

@sds I started pursuing the approach you outlined for adding .sass support. You can see my changes at: https://github.com/mdiebolt/scss-lint/commit/0710e4440bb059bbbb428ffba3e1d34b47e4f565 I ran into trouble and am pretty stumped. Running ``` ruby...

@sds Thanks for the quick reply! I've made good progress thanks to your help and should have a passing .sass test suite by the end of the week. At that...

I ran into lots of problems with the monkey patched `Sass::Tree` which caused line numbers to be incorrectly reported to the linter. Also, the way I have the specs set...

I wrote a SASS mixin to do this with PollEverywhere and it works well. ``` =mobile-image($name, $background_position: 50%) background: inline-image('../images/#{$name}.png') $background_position no-repeat @media all and (-webkit-min-device-pixel-ratio: 1.5) background: inline-image('../images/#{$name}@2x.png') $background_position...