Contribute to this guideReport an issue

guideSource Code Editing

Features described in this article are provided through plugins that may not be included in the CKEditor preset available from the Download site that you are using and may need to be added to your custom build with online builder.

CKEditor is a WYSIWYG editor, so it makes it easy for end users to work on HTML content without any knowledge of HTML whatsoever. More advanced users, however, sometimes want to access raw HTML source code for their content and CKEditor makes it possible by providing two dedicated plugins: Source Editing Area and Source Dialog.

Both plugins introduce the Source toolbar button. There are a few differences between them, though.

The Source Editing Area plugin:

  • Provides source code editing in the source editing area that replaces the WYSIWYG view within the editor interface.
  • Is only available for an editor with fixed user interface (which is the default UI for classic, iframe-based editor).
  • Is included by default in the Standard and Full installation packages. If you are using these packages, you do not need to perform any configuration steps in order to use this feature, although you need to remember that it is only available in editor instances with fixed UI.

The image below presents the source editing area open in a classic editor instance.

The Source Dialog plugin:

If you want to use it in an inline editor instance (which by default uses floating user interface), add the following to your configuration:

config.extraPlugins = 'sourcedialog';

If you are using the “item by item” toolbar configuration, note that the button name for the Source dialog is Sourcedialog.

If, on the other hand, you want to replace the default source editing area with the source dialog for classic editor with fixed user interface, use the following settings:

config.extraPlugins = 'sourcedialog';
config.removePlugins = 'sourcearea';

The image below presents the Source dialog window open from an inline editor instance with floating UI.

# Other Data Formats

If another plugin generates CKEditor output data format other than HTML, like for example the BBCode Output Format plugin, the source editing area will display editor content in that format.

# Configuring Source Code Format

At the moment the only aspect of the source code view that you can configure is the tab-size CSS property of the source editing area. Use the CKEDITOR.config.sourceAreaTabSize option to set the width of the tab character. Enter an integer
to denote the number of spaces that the tab will contain.

config.sourceAreaTabSize = 8;

Please note this is an experimental CSS property which may not be supported in all web browsers.

# Source Code Editing Demo

See the working “Source Code Editing” sample that showcases both source editing plugins combined with classic and inline editor instances.

Refer to the following resources for more information about related features: