Skip to content

Instantly share code, notes, and snippets.

@develop7
Created April 24, 2010 16:08
Show Gist options
  • Select an option

  • Save develop7/377741 to your computer and use it in GitHub Desktop.

Select an option

Save develop7/377741 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @include http://www.tumblr.com/*/new/*
// @include http://www.tumblr.com/new/*
// @include http://www.tumblr.com/edit/*
// ==/UserScript==
(function(){
var ednoteel = $A($$('div.editor_note'));
var ismkdown = ednoteel.size() > 0 && ednoteel[0].text == "markdown"; //detect whether markdown mode is enabled
if (ismkdown){
$$('form div + textarea')[0].style.fontFamily = "monospace"; //set monospace font family for textarea
}
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment