Skip to content

Instantly share code, notes, and snippets.

@poonl1
poonl1 / gourdify
Created January 5, 2015 09:46
Gourdify
var ps = document.querySelectorAll("p");
[].slice.call(ps).forEach(function(p){
p.innerHTML = p.innerHTML.replace(/g\w+/gi, "gourd").replace(/h\w+/gi, "harfitt").replace(/e\w+/gi, "eduardo").replace(/y\w+/gi, "yeya").replace(/s\w+/gi, "scrub").replace(/w\w+/gi, "woo").replace(/p\w+/gi, "park").replace(/v\w+/gi, "vroom").replace(/j\w+/gi, "jaewoo").replace(/l\w+/gi, "lorry")
})