You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/content/conversion/import-export/docx/custom-mark-conversion.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ meta:
9
9
import { Callout } from'@/components/ui/Callout'
10
10
import { CodeDemo } from'@/components/CodeDemo'
11
11
12
-
When importing a DOCX file, you can also define how custom marks should be converted back to Tiptap nodes. This is done by passing an array of custom mark definitions to the `import` command. You could use this feature to convert your custom stylings from Word into Titap with ease.
12
+
When importing a DOCX file, you can also define how custom marks should be converted back to Tiptap nodes. This is done by passing an array of custom mark definitions to the `importDocx` command. You could use this feature to convert your custom stylings from Word into Titap with ease.
The latest version of the `@tiptap-pro/extension-import` has the `prosemirrorMarks` configuration option available.
38
+
The latest version of the `@tiptap-pro/extension-import-docx` has the `prosemirrorMarks` configuration option available.
39
39
40
40
This option allows you to map custom nodes from the DOCX to your Tiptap schema. In the example above, we are mapping the `bold` and `italic` nodes from the DOCX to the `strong` and `em` nodes in our Tiptap schema.
Copy file name to clipboardexpand all lines: src/content/conversion/import-export/docx/custom-node-conversion.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ meta:
9
9
import { Callout } from'@/components/ui/Callout'
10
10
import { CodeDemo } from'@/components/CodeDemo'
11
11
12
-
One of the biggest advantages of the `@tiptap-pro/extension-export-docx` and `@tiptap-pro/extension-import` extensions is the ability to define how custom nodes in your Tiptap schema should be rendered in DOCX.
12
+
One of the biggest advantages of the `@tiptap-pro/extension-export-docx` and `@tiptap-pro/extension-import-docx` extensions is the ability to define how custom nodes in your Tiptap schema should be rendered in DOCX.
13
13
14
14
This allows you to preserve application-specific content in the exported Word file.
15
15
@@ -209,13 +209,13 @@ You can construct any supported `DOCX` elements in the `render` function using t
When importing a DOCX file, you can also define how custom nodes should be converted back to Tiptap nodes. This is done by passing an array of custom node definitions to the `import` command.
212
+
When importing a DOCX file, you can also define how custom nodes should be converted back to Tiptap nodes. This is done by passing an array of custom node definitions to the `importDocx` command.
The latest version of the `@tiptap-pro/extension-import` has available the `promisemirrorNodes` configuration option. This option allows you to map custom nodes from the DOCX to your Tiptap schema. In the example above, we are mapping the `Hintbox` custom node from the DOCX to the `hintbox` custom node in our Tiptap schema. By doing so, whenever the DOCX contains a `Hintbox` custom node, it will be converted to a `hintbox` node in Tiptap when imported.
231
+
The latest version of the `@tiptap-pro/extension-import-docx` has available the `promisemirrorNodes` configuration option. This option allows you to map custom nodes from the DOCX to your Tiptap schema. In the example above, we are mapping the `Hintbox` custom node from the DOCX to the `hintbox` custom node in our Tiptap schema. By doing so, whenever the DOCX contains a `Hintbox` custom node, it will be converted to a `hintbox` node in Tiptap when imported.
232
232
233
233
<Callouttitle='DOCX, "prosemirrorNodes" and "prosemirrorMarks"'variant="info">
234
234
Please note that the `promisemirrorNodes` and `prosemirrorMarks` options will only work if you're importing a `.docx` file. If you're importing another type of file, eg: an `.odt` file, the `/import` endpoint will be used instead of the `/import-docx` endpoint, and the `promisemirrorNodes` and `prosemirrorMarks` options will not be available, and therefore you'd need to rely on the [custom node and mark mapping API](/conversion/import-export/docx/rest-api#custom-node-and-mark-mapping) for those endpoints.
0 commit comments