-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtinymce.html
25 lines (21 loc) · 975 Bytes
/
tinymce.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>
<script>
tinymce.init({
selector: "textarea", // change this value according to your HTML
plugins: 'code print preview importcss searchreplace autolink autosave save directionality visualblocks visualchars fullpage fullscreen image link media template codesample table charmap hr pagebreak nonbreaking anchor toc insertdatetime advlist lists wordcount imagetools textpattern noneditable help charmap quickbars emoticons',
height : "1080"
});
</script>
</head>
<body>
<h1>TinyMCE</h1> or try the markdown editor: <a href="https://www.tiny.cloud/labs/markdown/">https://www.tiny.cloud/labs/markdown/</a>
<form method="post">
<textarea id="textarea"></textarea>
</form>
</body>
</html>