ImportWordConfig
                      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
- 
                              converterUrl : string | undefinedmodule:import-word/importword~ImportWordConfig#converterUrlA URL to the Docx converter. const importWordConfig = { converterUrl: 'https://myconverter.com/v1/' }Copy codeNote: 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'
- 
                              module:import-word/importword~ImportWordConfig#formatting
- 
                              module:import-word/importword~ImportWordConfig#tokenUrlA token URL or a token request function. This field is optional and should be used only when a different tokenUrlis required for the Import from Word feature.Note: The token can be disabled with the falsevalue provided.See: tokenUrl