-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1 KB
/
index.html
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
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProseMirror demo</title>
</head>
<body>
<div id="content" hidden>
<p>
This paragraph has a footnote<footnote>A note placed at the bottom of a page of a book or manuscript that comments
on or cites a reference for a designated
part of the text.</footnote> in it. And another<footnote>Distinctly different from the first.</footnote> one.
</p>
<p>Hello world, this is the ProseMirror editor.</p>
<div class="call-to-action">
<p>Call to action</p>
</div>
<div role="note" aria-label="Warning" class="application-notice help-notice">
<p>This is a warning callout</p>
</div>
<div role="note" aria-label="Information" class="application-notice info-notice">
<p>This is an information callout</p>
</div>
</div>
<div id="editor"></div>
<script type="module" src="/main.js"></script>
</body>
</html>