NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Rectify quotes
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Make <q> tags saner
// @author You
// @match *://*.gwern.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll("q").forEach(function(element) {
element.outerHTML = "“" + element.outerHTML + "”";
});
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML += "q::before { content: none; } q::after { content: none; } ";
document.body.appendChild(css);
})();