Skip to content

Instantly share code, notes, and snippets.

View lemmabit's full-sized avatar

lemmabit lemmabit

View GitHub Profile
@lemmabit
lemmabit / Heartquotes.js
Last active November 2, 2016 15:04
Inspired by kellym/smartquotesjs and using its regexes, a quote (and ellipsis) smaritifier that transcends tags. I use it as a bookmarklet. (I mostly gave it this name so it would be before "LICENSE" alphabetically.)
(function(transform, root) {
root = root || document.body;
var TEXT_NODE = Element.TEXT_NODE, ELEMENT_NODE = Element.ELEMENT_NODE;
var contents = '', nodes = [];
function replace(regex, string, fakeLookbehind) {
var any = false;
do {