28 lines
699 B
HTML
28 lines
699 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>simditor</title>
|
|
<link rel="stylesheet" type="text/css" href="styles/simditor.css" />
|
|
|
|
<script src="http://www.jq22.com/jquery/jquery-1.10.2.js"></script>
|
|
<script type="text/javascript" src="scripts/module.min.js"></script>
|
|
<script type="text/javascript" src="scripts/hotkeys.min.js"></script>
|
|
<script type="text/javascript" src="scripts/uploader.min.js"></script>
|
|
<script type="text/javascript" src="scripts/simditor.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<textarea id="editor" placeholder="Balabala" autofocus></textarea>
|
|
<script>
|
|
var editor = new Simditor({
|
|
textarea: $('#editor')
|
|
//optional options
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|