-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo-quickstart.php
More file actions
29 lines (21 loc) · 927 Bytes
/
Copy pathdemo-quickstart.php
File metadata and controls
29 lines (21 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Traven Quickstart Demo</title>
</head>
<body>
<a href="index.php" style="font-family: sans-serif; font-size: 0.85rem; color: #cc4a0a; text-decoration: none; display: inline-block; margin-top: 15px; margin-bottom: 5px;">← Back</a>
<h1>Traven Quickstart Demo</h1>
<!-- Step 1 — Replace your textarea -->
<form action="" method="POST">
<traven-editor name="content" toolbar>
Hi, I'm Traven. I am a **Rich Text Editor** for Markdown (and more).
Go ahead, write something here... or *View Source* to see for yourself how little it takes to embed this editor anywhere you want
</traven-editor>
</form>
<!-- Step 2 — Load Traven in 1 line -->
<script type="module" src="https://cdn.jsdelivr.net/npm/@freedomware/traven@latest/dist/traven.js"></script>
</body>
</html>