mirror of
https://github.com/duhanbalci/dexpr.git
synced 2026-07-02 00:29:15 +00:00
initial commit
This commit is contained in:
19
editor/demo.html
Normal file
19
editor/demo.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user