-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 2.03 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 2.03 KB
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
<html>
<head>
<meta charset="utf-8">
<meta property="og:image" content="https://seleniumbase.github.io/cdn/img/tiny_mce.png">
<title>TinyMCE</title>
<script src="https://seleniumbase.github.io/tinymce/tinymce.min.js"></script>
<script>tinymce.init({selector:'textarea', plugins: 'preview paste importcss searchreplace autolink directionality code visualblocks visualchars fullscreen image link media template codesample table charmap hr pagebreak nonbreaking anchor toc insertdatetime advlist lists imagetools textpattern noneditable help charmap emoticons', menubar: 'file edit view insert format tools table help', toolbar: 'undo redo | bold italic underline strikethrough | fontselect fontsizeselect formatselect | alignleft aligncenter alignright alignjustify | outdent indent | numlist bullist | forecolor backcolor removeformat | pagebreak | charmap emoticons | fullscreen preview | insertfile image media template link anchor codesample | ltr rtl', content_css: 'https://www.tiny.cloud/css/codepen.min.css', toolbar_mode: 'sliding',
contextmenu: "link image imagetools table", toolbar_sticky: true,});</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P5KFWRNLRN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P5KFWRNLRN', { cookie_flags: 'SameSite=None;Secure' });
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167313767-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-167313767-1', { cookie_flags: 'SameSite=None;Secure' });
</script>
</head>
<body>
<!-- Tested with SeleniumBase - https://seleniumbase.io -->
<div class="tinymce">
<h3 style="text-align: center;">TinyMCE WYSIWYG Editor</h3>
<textarea style="height:300px;">
<h2 style="text-align: center;">Welcome to the TinyMCE demo!</h2>
</textarea>
</div>
</body>
</html>