-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.63 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
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Teletype Blog</title>
<!-- <script
src="https://cdn.tiny.cloud/1/dl1j4v1486zvesdrio6s3ti1wfajk9nnma1qdmi6df9abl6o/tinymce/6/tinymce.min.js"
referrerpolicy="origin"
></script> -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- <script>
tinymce.init({
selector: "textarea",
plugins:
"ai tinycomments mentions anchor autolink charmap codesample emoticons image link lists media searchreplace table visualblocks wordcount checklist mediaembed casechange export formatpainter pageembed permanentpen footnotes advtemplate advtable advcode editimage tableofcontents mergetags powerpaste tinymcespellchecker autocorrect a11ychecker typography inlinecss",
toolbar:
"undo redo | blocks fontfamily fontsize | bold italic underline strikethrough | link image media table mergetags | align lineheight | tinycomments | checklist numlist bullist indent outdent | emoticons charmap | removeformat",
tinycomments_mode: "embedded",
tinycomments_author: "Author name",
mergetags_list: [
{ value: "First.Name", title: "First Name" },
{ value: "Email", title: "Email" },
],
ai_request: (request, respondWith) =>
respondWith.string(() =>
Promise.reject("See docs to implement AI Assistant")
),
});
</script> -->
</body>
</html>