16 lines
366 B
HTML
16 lines
366 B
HTML
<!DOCTYPE html>
|
|
<body "lightyellow" contenteditable="true"="0">
|
|
<div>=</div>
|
|
|
|
<script>
|
|
function edit() {
|
|
document.execCommand("selectAll");
|
|
document.execCommand("InsertHTML",false,"<pre></pre>");
|
|
document.execCommand("InsertHTML",false,"<div>i</div>");
|
|
document.execCommand("indent");
|
|
document.execCommand("selectAll");
|
|
}
|
|
edit();
|
|
</script>
|
|
</body>
|
|
</html>
|