Skip to content

Commit c2f6cb3

Browse files
Merge pull request #124 from ueberdosis/feature/conversion-support-v1
Adjusted commands and configurations
2 parents e3281e2 + 38c9767 commit c2f6cb3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/content/conversion/import-export/docx/custom-mark-conversion.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ meta:
99
import { Callout } from '@/components/ui/Callout'
1010
import { CodeDemo } from '@/components/CodeDemo'
1111

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.
1313

1414
```ts
15-
import { Import } from '@tiptap-pro/extension-import'
15+
import { ImportDocx } from '@tiptap-pro/extension-import-docx'
1616

1717
const editor = new Editor({
1818
extensions: [
1919
// Other extensions ...
20-
Import.configure({
20+
ImportDocx.configure({
2121
appId: 'your-app-id',
2222
token: 'your-jwt',
2323
// ATTENTION: This is for demo purposes only
@@ -35,7 +35,7 @@ const editor = new Editor({
3535
})
3636
```
3737

38-
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.
3939

4040
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.
4141

src/content/conversion/import-export/docx/custom-node-conversion.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ meta:
99
import { Callout } from '@/components/ui/Callout'
1010
import { CodeDemo } from '@/components/CodeDemo'
1111

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.
1313

1414
This allows you to preserve application-specific content in the exported Word file.
1515

@@ -209,13 +209,13 @@ You can construct any supported `DOCX` elements in the `render` function using t
209209

210210
<CodeDemo src="https://develop--tiptap-pro.netlify.app/preview/Extensions/ImportDocxCustomNode" />
211211

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 `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.
213213

214214
```ts
215-
import { Import } from '@tiptap-pro/extension-import'
215+
import { ImportDocx } from '@tiptap-pro/extension-import-docx'
216216

217217
// ... inside your Editor or useEditor setup:
218-
Import.configure({
218+
ImportDocx.configure({
219219
appId: 'your-app-id',
220220
token: 'your-jwt',
221221
// ATTENTION: This is for demo purposes only
@@ -228,7 +228,7 @@ Import.configure({
228228
}),
229229
```
230230

231-
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.
232232

233233
<Callout title='DOCX, "prosemirrorNodes" and "prosemirrorMarks"' variant="info">
234234
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.

src/content/conversion/import-export/docx/preserve-images.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ This is a URL endpoint on your server that the conversion service will use to of
2323

2424
```js
2525
import { Editor } from '@tiptap/core'
26-
import { Import } from '@tiptap-pro/extension-import'
26+
import { ImportDocx } from '@tiptap-pro/extension-import-docx'
2727

2828
const editor = new Editor({
2929
// ... other editor options,
3030
extensions: [
31-
Import.configure({
31+
ImportDocx.configure({
3232
appId: '<your-app-id>',
3333
token: '<your-jwt>',
3434
imageUploadCallbackUrl: 'https://your-server.com/upload-image'

0 commit comments

Comments
 (0)