Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created July 4, 2016 09:52
Show Gist options
  • Save theredstapler/586c69e38390f6cf9f35e7ec7b63aaea to your computer and use it in GitHub Desktop.
Save theredstapler/586c69e38390f6cf9f35e7ec7b63aaea to your computer and use it in GitHub Desktop.
<!doctype html>
<head>
<script src="lib/codemirror.js"></script>
<link rel="stylesheet" href="lib/codemirror.css">
<link rel="stylesheet" href="theme/neo.css">
<script src="mode/javascript/javascript.js"></script>
<script src="mode/css/css.js"></script>
<style>
body {
background-color: #eee;
}
</style>
</head>
<body>
<div id="codeeditor"></div>
<script>
var editor = CodeMirror(document.getElementById("codeeditor"), {
value: "function testFunction() { \n\talert('hello world');\n\treturn true; \n}",
mode: "javascript",
theme: "neo"
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment