You can access this bl.ock here
You can embed code in your .md, and it will be syntax-highlighted:
function shuffle(array) {
var m = array.length, t, i;
/* While there remain elements to shuffle, pick one and swap it with the current element */
while (m) {
i = Math.floor(Math.random() * m--);
t = array[m];
array[m] = array[i];
array[i] = t;
}
return array;
}
... and back to normal text
- license: gpl-3.0
- height: 500
- scrolling: no
- border: yes