@blocknote/xl-docx-exporter
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
10 lines (8 loc) • 420 B
text/typescript
import { docxBlockMappingForDefaultSchema } from "./blocks.js";
import { docxInlineContentMappingForDefaultSchema } from "./inlinecontent.js";
import { docxStyleMappingForDefaultSchema } from "./styles.js";
export const docxDefaultSchemaMappings = {
blockMapping: docxBlockMappingForDefaultSchema,
inlineContentMapping: docxInlineContentMappingForDefaultSchema,
styleMapping: docxStyleMappingForDefaultSchema,
};