Files
dexpr/editor/demo.html
2026-04-05 16:08:59 +03:00

20 lines
641 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>dexpr Editor Demo</title>
<style>
body { font-family: system-ui; max-width: 800px; margin: 40px auto; padding: 0 20px; }
h1 { font-size: 1.4rem; }
#editor { border: 1px solid #ccc; border-radius: 4px; }
.info { color: #666; font-size: 0.85rem; margin-top: 8px; }
</style>
</head>
<body>
<h1>dexpr Editor</h1>
<div id="editor"></div>
<p class="info">Type to see syntax highlighting. Press Ctrl+Space for autocomplete. Try typing a dot after a variable for method suggestions.</p>
<script src="dist/demo.global.js"></script>
</body>
</html>