* ckeditor - Word Count & Char Count
- ÀÌ Ç÷¯±×ÀÎÀº ¿¡µðÅÍ ÀÛ¼º½Ã ¿¡µðÅÍ ÇÏ´Ü¿¡ ÀÔ·ÂÇÑ ÁÙ ¼ö, ´Ü¾î ¼ö, ¹®ÀÚ ¼ö¸¦ Ç¥½ÃÇØ ÁÝ´Ï´Ù.
* ¶óÀ̼¾½º(¹«·á)
- GPLV3, LGPL3, MPL, MIT
* ¼³Ä¡¹æ¹ý
- Ç÷¯±×ÀÎ ÆÄÀÏÀ» ´Ù¿î·Îµå ¹Þ¾Æ ckeditor °¡ ¼³Ä¡µÈ Æú´õ³» plugins Æú´õ¾È¿¡ ¾÷·Îµå ÇÕ´Ï´Ù.
¿¹) http://example.com/ckeditor/plugins/wordcount
- ckeditor ÀÇ ¼³Á¤ÆÄÀÏÀÎ config.js ÆÄÀÏÀ» ¿¾î ¾Æ·¡ ¼Ò½º¸¦ Ãß°¡ÇÏ°í,
ÁÖ¼®¿¡ ´Þ¸° ¼³¸í¿¡ ¸Â°Ô ¼³Á¤À» Á¶ÀýÇÕ´Ï´Ù.
config.extraPlugins = 'wordcount';
config.wordcount = {
// Whether or not you want to show the Word Count
showWordCount: true,
// Whether or not you want to show the Char Count
showCharCount: false,
// Maximum allowed Word Count
maxWordCount: 4,
// Maximum allowed Char Count
maxCharCount: 10
};
- ¿¡µðÅÍ ½ÇÇà ÈÄ ±ÛÀÚ¸¦ ÀÔ·ÂÇÏ´Â °æ¿ì ¾Æ·¡Ã³·³ ÁÙ ¼ö, ´Ü¾î ¼ö, ¹®ÀÚ ¼ö°¡ Ç¥½ÃµË´Ï´Ù.
|