Skip to content

Instantly share code, notes, and snippets.

@prbaron
prbaron / gist:ec54fa4d0901c9f7ea81
Created November 3, 2015 22:21 — forked from benoitboucart/gist:f80090c87fa97f4e4098
How to use Jekyll with Gulp
/**
* For more information see this tutorial: http://blog.webbb.be/use-jekyll-with-gulp/
*
* Libs import
* --> How to install? npm install --save-dev gulp-minify-html
* @type {[type]}
*/
var gulp = require('gulp'),
path = require('path'),
@prbaron
prbaron / slideDown.js
Last active August 29, 2015 14:27 — forked from ludder/slideDown.js
Vanilla JavaScript slideUp and slideDown functions
/*
Element to slide gets the following CSS:
max-height: 0;
opacity: 0;
overflow: hidden;
transition: max-height 0.4s ease 0s;
*/
/**
* Like jQuery's slideDown function - uses CSS3 transitions