File: example.html

package info (click to toggle)
tinymce 3.4.8%2Bdfsg0-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,968 kB
  • ctags: 548
  • sloc: makefile: 52; sh: 14
file content (19 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<title>TinyMCE Debian Test</title>
<script language="javascript" type="text/javascript" src="/tinymce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
    mode : "textareas"
});
</script>
</head>
<body>

<h1>TinyMCE Debian Test</h1>

<form method="post">
    <textarea name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea>
</form>
</body>
</html>