| Current Path : /home/sunflowe/www2/vacancesfloride/plugins/editors/emmet/js/codemirror/ |
| Current File : /home/sunflowe/www2/vacancesfloride/plugins/editors/emmet/js/codemirror/index.html |
<!doctype html>
<html>
<head>
<title>Emmet for CodeMirror 3</title>
<link rel="stylesheet" href="./codemirror/codemirror.css" />
<script src="./codemirror/codemirror.js"></script>
<script src="./codemirror/xml.js"></script>
<script src="./codemirror/css.js"></script>
<script src="./codemirror/javascript.js"></script>
<script src="./codemirror/htmlmixed.js"></script>
<script src="./emmet.min.js"></script>
<style>
.CodeMirror {
border: 1px solid black;
}
.cm-delimit {
color: #fa4;
}
</style>
</head>
<body>
<h1>Emmet for CodeMirror 3</h1>
<form><textarea id="code" name="code">
<html style="color: green">
<!-- this is a comment -->
<head>
<title>HTML Example</title>
</head>
<body>
The indentation tries to be <em>somewhat &quot;do what
I mean&quot;</em>... but might not match your style.
</body>
</html>
</textarea></form>
<script>
CodeMirror.fromTextArea(document.getElementById("code"), {
mode : "text/html",
lineNumbers : true,
profile: 'xhtml' /* define Emmet output profile */
});
</script>
</body>
</html>