Skip to content

Instantly share code, notes, and snippets.

@rahilwazir
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahilwazir/d03d24510fa83f8b2b83 to your computer and use it in GitHub Desktop.
Save rahilwazir/d03d24510fa83f8b2b83 to your computer and use it in GitHub Desktop.
StackOverflow - Change font family of markdown
// ==UserScript==
// @name StackOverflow - Change font family of markdown
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://stackoverflow.com/*
// @copyright 2012+, You
// @grant none
// ==/UserScript==
window.addEventListener('load', function () {
var codeEl = document.getElementsByTagName('code');
for(var i = 0; i < codeEl.length; i++) {
codeEl[i].style.fontFamily = "Source Code Pro";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment