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