http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-font_names
http://ojava.tistory.com/1
http://docs.cksource.com/ckeditor_api/
ckeditor config 수정방법
\common\js\plugins\ckeditor\ckeditor\config.js
예제)
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.toolbar = // [['Bold','Italic','Underline','Strike','-','Subscript','Superscript','-','TextColor','BGColor','-', // 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','Link','Unlink','-', // 'Find','Replace','SelectAll','RemoveFormat','-','Image','Flash','Table','SpecialChar'], // '/',['Source','-','ShowBlocks','-','Font','FontSize','Undo','Redo','-','About']]; config.toolbarCanCollapse = true; config.toolbarStartupExpanded = false; };
....