0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CKEditorのきほん

Posted at

設定の書き方

その1(個別に直書きで指定)
  <h1>テスト</h1>
  <textarea name="editor1" id="editor1">replaced</textarea>
  <script>
    CKEDITOR.replace('editor1', {
      customConfig: './ckeditor_config.js',
      // language: 'fr',
      // uiColor:'#9AB8F3'
    });
  </script>
その2(個別の設定ファイル)
  <h1>テスト</h1>
  <textarea name="editor1" id="editor1">replaced</textarea>
  <script>
    CKEDITOR.replace('editor1', {
      customConfig: './ckeditor_config.js',
    });
  </script>
/ckeditor/ckeditor_config.js
 CKEDITOR.editorConfig = function( config ) {
    config.language = 'fr';
    config.uiColor = '#AADC6E';
};
その3(全体の設定ファイル)
  <h1>テスト</h1>
  <textarea name="editor1" id="editor1">replaced</textarea>
  <script>
    CKEDITOR.replace('editor1');
  </script>
/ckeditor/config.js
 CKEDITOR.editorConfig = function( config ) {
    config.language = 'fr';
    config.uiColor = '#AADC6E';
};
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?