Add blockquote to CKEditor

How to add blockquote to the CKeditor toolbar?
image

I tried this and downloading the blockquote plugin, but no blockquote was added to the toolbar.

CKEDITOR.plugins.addExternal('blockquote', '/Site/Editor/plugins/blockquote/');
var originalFn = CKEDITOR.editorConfig;
CKEDITOR.editorConfig = function (config) {
    originalFn(config);
    config.extraPlugins += ',blockquote';
};

Litium version: 8.9

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.