Created
April 24, 2010 16:08
-
-
Save develop7/377741 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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