-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 794 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 794 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
<!DOCTYPE html>
<html>
<head>
<!-- let's load DS styles first, do not move this line down -->
<link rel="stylesheet" href="node_modules/design-system/dist/css/styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Post Editor Demo</title>
</head>
<body>
<div id="quill-root"></div>
<script type="text/javascript">
postEditor.default(
document.querySelector('#quill-root'),
{
language: 'EN',
onCreate: () => console.log('Up & running!'),
onTrack: data => console.log(data),
suggestionsApiUrl: 'https://services.wikia.com/discussion/3035/article-titles'
},
);
</script>
</body>
</html>