-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.9 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.9 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="la">
<head>
<meta charset="utf-8">
<title>Tinymce plugin</title>
</head>
<body>
<section class="wrapper">
<h1>Tinymce plugin</h1>
<textarea rows="30"><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></textarea>
</section>
<script src="./build/tinymce.min.js"></script>
<script>
tinymce.init({
mode : "specific_textareas",
theme: "silver",
selector: "textarea",
language_url : "./build/langs5/pl.js",
language: "pl",
relative_urls: false,
entity_encoding: "raw",
plugins: [
"advlist autolink link image lists charmap print preview hr anchor pagebreak",
"searchreplace wordcount visualblocks visualchars insertdatetime media nonbreaking",
"table contextmenu directionality emoticons paste textcolor filemanager code fullscreen",
"responsive-filemanager"
],
toolbar1: "undo redo | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | styleselect",
toolbar2: "| responsive-filemanager | link unlink anchor | image media | forecolor backcolor | print preview code fullscreen",
image_advtab: true,
external_filemanager_path: "node_modules/responsive-filemanager/filemanager/",
filemanager_title:"Responsive Filemanager" ,
external_plugins: {
"filemanager" : "plugins/filemanager/plugin.js"
}
});
</script>
</body>
</html>