devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 422 B
JavaScript
import { TransparentDestination } from './destination';
import { StructuredDocumentContentDestination } from './structured-document-content-destination';
export class StructuredDocumentDestination extends TransparentDestination {
processCurrentElement(reader) {
return reader.localName == 'sdtContent' ? new StructuredDocumentContentDestination(this.data) : super.processCurrentElement(reader);
}
}