...
| Code Block |
|---|
<!DOCTYPE html>
<html>
<head>
<script src="http://kurapa.com/js/tinymce/tinymce.min.js" referrerpolicy="origin"></script>
<script>
tinymce.init({
selector:'textarea',
plugins: "nonbreaking",
menubar: '',
toolbar: '',
skin: 'oxide-dark',
content_css: 'dark',
nonbreaking_force_tab: true
});
</script>
</head>
<body>
<textarea cols=80 rows=20 style="background-color:orange;">Chun<textarea>Chun Kang is genius !!!</textarea>
</body>
</html> |
Force to insert <BR> tag instead of <P> tag when press enter
You can force inserting <br> tag instead of <p> tag when you press enter by foreced_root_block=false
| Code Block |
|---|
<!DOCTYPE html>
<html>
<head>
<script src="http://kurapa.com/js/tinymce/tinymce.min.js" referrerpolicy="origin"></script>
<script>
tinymce.init({
selector:'textarea',
plugins: 'nonbreaking',
menubar: '',
toolbar: '',
skin: 'oxide-dark',
content_css: 'dark',
nonbreaking_force_tab: true,
forced_root_block: false
});
</script>
</head>
<body>
<textarea>Chun Kang is genius !!!</textarea>
</body>
</html> |
...