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( ... );
See all editor options.
Properties
-
converterUrl : string | undefined
module:import-word/importword~ImportWordConfig#converterUrl
A URL to the Docx converter.
const importWordConfig = { converterUrl: 'https://myconverter.com/v1/' }
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'
-
module:import-word/importword~ImportWordConfig#formatting
-
module:import-word/importword~ImportWordConfig#tokenUrl
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