Skip to content

Instantly share code, notes, and snippets.

@micahbrich
Created October 29, 2009 21:23
Show Gist options
  • Save micahbrich/221853 to your computer and use it in GitHub Desktop.
Save micahbrich/221853 to your computer and use it in GitHub Desktop.
this junk is doing nothing at all
<script src="javascripts/codemirror/js/codemirror.js" type="text/javascript"></script>
<script type="text/javascript">
var textarea = document.getElementById('user_about');
var editor = CodeMirror.fromTextArea(textarea, {
content: textarea.value,
parserfile: ["parsexml.js", "parsecss.js", "tokenizejavascript.js", "parsejavascript.js", "parsehtmlmixed.js"],
stylesheet: ["javascripts/codemirror/css/xmlcolors.css", "javascripts/codemirror/css/jscolors.css", "javascripts/codemirror/css/csscolors.css"],
path: "javascripts/codemirror/js/",
lineNumbers: true,
iframeClass: 'ifc'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment