Skip to content

Instantly share code, notes, and snippets.

@jrop
Forked from jdkanani/notepad.html
Last active October 23, 2017 21:14
Show Gist options
  • Save jrop/901063b93e7879d9e29ce35a64137fce to your computer and use it in GitHub Desktop.
Save jrop/901063b93e7879d9e29ce35a64137fce to your computer and use it in GitHub Desktop.
This bookmarklet gives you a code editor in your browser with a single click.
data:text/html, <style type="text/css">html,body{height:100%;margin:0;padding:0}.e{height:100%}</style><div class="e" id="editor"></div><script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.9/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("editor");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/javascript");</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment