UNPKG

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
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); } }