Interface

SourceEditingEnhancedConfig (source-editing-enhanced)

@ckeditor/ckeditor5-source-editing-enhanced/src/sourceeditingenhancedconfig

interface

The configuration of the source editing enhanced feature.

ClassicEditor
	.create( {
		sourceEditingEnhanced: {
			allowCollaborationFeatures: true
		}
	} )
	.then( ... )
	.catch( ... );

See all editor options.

Filtering

Properties

  • allowCollaborationFeatures : boolean | undefined

    Set to true to enable source editing feature for real-time collaboration.

    Please note that source editing feature is not fully compatible with real-time collaboration and using it may lead to data loss. Read more.

    Defaults to false

  • theme : Extension | undefined

    The theme of the source editor.

    Read more about themes configuration.