Sign up (with export icon)

ImportWordConfig

Api-interface icon interface

The configuration of the import from Word feature.

The configuration for the import from Word feature requires providing the config.importWord.tokenUrl:

ClassicEditor
	.create( editorElement, {
		importWord: {
			tokenUrl: 'https://example.com/cs-token-endpoint'
		}
	} )
	.then( ... )
	.catch( ... );
Copy code

See all editor options.

Properties

  • Chevron-right icon

    converterUrl : string | undefined

    A URL to the Docx converter.

    const importWordConfig = {
    	converterUrl: 'https://myconverter.com/v1/'
    }
    
    Copy code

    Note: The plugin uses the default Word to HTML converter delivered by CKEditor Cloud Services. You can provide a URL to an on-premises converter instead.

    Defaults to 'https://docx-converter.cke-cs.com/v2/convert/docx-html'

  • Chevron-right icon

    tokenUrl : TokenUrl | undefined

    A token URL or a token request function. This field is optional and should be used only when a different tokenUrl is required for the Import from Word feature.

    Note: The token can be disabled with the false value provided.

    See: tokenUrl