1. ホーム
  2. Web プログラミング
  3. ウェブ編集者

CKEditorにsyntaxhighlighterコードハイライトプラグインを追加。

2022-01-01 23:24:38

CKEditorは公式サイトからダウンロードし、私はCKEditor 3.3.1 をダウンロードしました。CKEditorは、オリジナルのFCKeditorとは違いすぎて、開発者としては、自分のブログをやるときは、常にコードを投稿する必要があるので、コードを挿入するプラグインを行うには、まずそれを与える必要がありました。ハイライトコードは"SyntaxHighlighter"で行われます。

1. ckeditor/plugins/" ディレクトリの下に "insertcode" を新規作成し、その下に "plugin.js" を新規作成し、以下のコードを入力します。

CKEDITOR.plugins.add('insertcode', {
requires: ['dialog'], 
init: function(a){
var b = a.addCommand('insertcode', new CKEDITOR.dialogCommand('insertcode'));
a.ui.addButton('insertcode', {
label: a.lang.insertcode.toolbar, command: 'insertcode',icon: this.path + 'images/code.jpg'
});
CKEDITOR.dialog.add('insertcode', this.path + 'dialogs/insertcode.js'); 
}
});

2. images"ディレクトリを追加し、quot;code.jpg"画像を置く(コードのjpg画像は添付ファイルにアップされているので、それを直接使用することができます)。

3. Dialogs"ディレクトリを追加し、新規に"insertcode.js"を作成し、以下のコードを入力します。

CKEDITOR.dialog.add('insertcode', function(editor){ 
 var escape = function(value){ 
  return value; 
 }; 
 return { 
  title: 'Insert Code Dialog', 
  resizable: CKEDITOR.DIALOG_RESIZE_BOTH, 
  minWidth: 720, 
  minHeight: 480, 
  contents: [{ 
   id: 'cb', 
   name: 'cb', 
   label: 'cb', 
   title: 'cb', 
   elements: [{ 
    type: 'select', 
    label: 'Language', 
    id: 'lang', 
    required: true, 
    'default': 'csharp', 
    items: [['ActionScript3', 'as3'], ['Bash/shell', 'bash'], ['C#', 'csharp'], ['C++', 'cpp'], ['CSS', 'css'], ['Delphi', 'delphi'], ['Diff', 'diff '], ['Groovy', 'groovy'], ['Html', 'xhtml'], ['JavaScript', 'js'], ['Java', 'java'], ['JavaFX', 'jfx'], ['Perl', 'perl'], ['PHP', 'php'], ['Plain Text', 'plain'], ['PowerShell', 'ps'], ['Python', 'py'], ['Ruby', 'rails'], ['Scala', 'scala'], ['SQL', 'sql'], ['Visual Basic', 'vb'], ['XML', ' xml']] 
   }, { 
    type: 'textarea', 
    style: 'width:700px;height:420px', 
    label: 'Code', 
    id: 'code', 
    rows: 31, 
    'default': '' 
   }] 
  }], 
  onOk: function(){ 
   code = this.getValueOf('cb', 'code'); 
   lang = this.getValueOf('cb', 'lang'); 
   html = '' + escape(code) + ''; 
   editor.insertHtml("<pre class=/"brush:" + lang + ";/">" + html + "</pre>"); 
  }, 
  onLoad: function(){ 
  } 
 }; 
}); 

 コードハイライトには "syntaxhighlighter" を使っていますが、もし気に入らなければ他のものに変えてください。 

4、次にCKEditorにプラグインを追加することですが、私は直接CKEditorプラグインのコアファイルを変更しているので、機能を使用するために必要なエディタとして"insert code"関数です。

     コードが圧縮されているckeditorディレクトリの中から"ckeditor.js"を探し、CKEditor用のオリジナルaboutプラグインを参考にします。"about"を探し、"を見つけます。 fullPage:false,height:200,plugins:'about,basicstyles'の3つのプラグインがあります。 の後に "、insertcode" を追加し、ここでは "plugins:'about'になっています。 挿入コード <スパン ,basicstyles"。

    about"を探し続けて、".を見つけてください。 j.add('about',{init:function(l){var m=l.addCommand('about',new a.dialogCommand('about'));m.modes={wysiwyg:1,source:1};m. canUndo= false;l.ui.addButton('About',{label:l.lang.about.title,command:'about'});a.dialog.add('about',this.path+'dialogs/about.js');}}); このセミコロンの後に"を追加しています。 j.add('insertcode', {requires: ['dialog'],init: function(l){l.addCommand('insertcode', new a.dialogCommand('insertcode')); l.ui.addButton('insertcode', {label: l.lang.insertcode.toolbar,command.lang.insertcode.toolbar, {label: l.dialogCommand('insertcode', new a.dialogCommand('insertcode'))) 'insertcode',icon: this.path + 'images/code.jpg'});a.dialog.add(' insertcode', this.path + 'dialogs/insertcode.js');}}); "。

    次に、CKEditorのデフォルトツールバーである"i.toolbar_Basic="を探し、".i.toolbar_Basicを追加します。 インサートコード <スパン "を使えば、好きな場所に追加することができます。例えば、私の" ['Maximize','ShowBlocks','-','insertcode'] とします。 "です。

    5. 5.quot;ckeditor/lang"に移動し、それぞれ" en.js"、"zh.js" "zh-cn.js" を追加してください。 ,insertcode:'コードを挿入する' "、" <スパン ,insertcode:'コードを挿入する' "、" <スパン ,insertcode:'コードを挿入する' "。

    6. CKEditorへの変更はOKで、最後のステップは、コードをハイライトする必要があるページで引用することです。

<link type = "text/css" rel = "stylesheet" href = "js/syntaxhighlighter/styles/shCore.css" /> 
<link type = "text/css" rel = "stylesheet" href ="js/syntaxhighlighter/styles/shThemeDefault.css" /> 
<script type = "text/javascript" src = "js/syntaxhighlighter/scripts/shCore.js" > </script> 
<script type = "text/javascript" src = "js/syntaxhighlighter/scripts/shBrushes.js" ></script> 

これら4つのファイルは、すべてsyntaxhighlighterのダウンロードパッケージで入手できます。最後に、このJSもページに追加してください。

<script type= "text/javascript" > 
SyntaxHighlighter.config.clipboardSwf= 'js/syntaxhighlighter/scripts/clipboard.swf' ; 
SyntaxHighlighter.all(); 
</script>

CKEditor の "Insert Code" プラグインはOKです。

小さなバグに対するヒント

変更後、挿入コードのアイコンのタイトルが空になっています。あなたのコードを "label: a.lang.insertcode.toolbar" (合計2箇所)から "label: a.lang.insertcode" に変更しました。解決しました!