You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
541 B
HTML
26 lines
541 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CKEditor</title>
|
|
<script src="../../../ckeditor.js"></script>
|
|
</head>
|
|
<body>
|
|
<textarea name="editor1"></textarea>
|
|
<script>
|
|
var config = {
|
|
extraPlugins: 'wordcount',
|
|
wordcount: {
|
|
maxParagraphs: 5,
|
|
showParagraphs: true,
|
|
showWordCount: false,
|
|
showRemaining: true
|
|
},
|
|
language: 'en'
|
|
}
|
|
</script>
|
|
<script>
|
|
CKEDITOR.replace( 'editor1' , config);
|
|
</script>
|
|
</body>
|
|
</html> |