| 1 | <!DOCTYPE html> |
|---|
| 2 | <html lang="de"> |
|---|
| 3 | <head> |
|---|
| 4 | <meta charset="utf-8"> |
|---|
| 5 | <title>CKEditor</title> |
|---|
| 6 | </head> |
|---|
| 7 | <body> |
|---|
| 8 | <p><textarea cols="80" id="text" name="text" rows="10"><p>ä<br>Ӂ<br>😀<br>😀<br>🚀<br>🇪🇬</p></textarea></p> |
|---|
| 9 | <script src="https://cdn.ckeditor.com/4.6.2/standard/ckeditor.js"></script> |
|---|
| 10 | <script type="text/javascript"> |
|---|
| 11 | window.onload = function(){ |
|---|
| 12 | CKEDITOR.replace('text'); |
|---|
| 13 | CKEDITOR.config.entities_latin = false; |
|---|
| 14 | CKEDITOR.config.entities_processNumerical = true; |
|---|
| 15 | CKEDITOR.config.docType = '<!DOCTYPE html>'; |
|---|
| 16 | CKEDITOR.config.toolbar = [{ name: 'document', items: [ 'Source' ] }]; |
|---|
| 17 | }; |
|---|
| 18 | </script> |
|---|
| 19 | </body> |
|---|
| 20 | </html> |
|---|