mirror of
https://github.com/duhanbalci/dexpr.git
synced 2026-07-01 16:19:16 +00:00
20 lines
641 B
HTML
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>
|