Markdown Editor
2016-07-31 本文已影响0人
无言的守望者
Github上找到的一个Markdown Editor
https://github.com/NextStepWebs/simplemde-markdown-editor
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Markdown Editor</title>
<link rel="stylesheet" type="text/css" href="simplemde/simplemde.min.css">
<script type="text/javascript" src="simplemde/simplemde.min.js"></script>
</head>
<body>
<textarea></textarea>
<script type="text/javascript">
var simplemde = new SimpleMDE();
</script>
</body>
</html>
simplemde-markdown-editor