Created
February 9, 2015 16:39
-
-
Save robertleeplummerjr/2bde43d05a6c5461bb23 to your computer and use it in GitHub Desktop.
stencila#3
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://raw.githubusercontent.com/jakiestfu/Medium.js/master/medium.js"></script> | |
<link href="https://raw.githubusercontent.com/jakiestfu/Medium.js/master/medium.css" type="text/css"/> | |
<style> | |
.green { | |
background-color: green; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="editor" contenteditable="true"> | |
<p>sadfkjhsadfkjhl | |
<span contenteditable="false" class="green"> text </span><span contenteditable="false" class="green"> text </span> | |
</p> | |
</div> | |
</body> | |
<script> | |
new Medium({ | |
element: document.getElementById('editor') | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment