Welcome to mirror list, hosted at ThFree Co, Russian Federation.

image.js « extensions « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f0109fd751f8940d5540079947a747a1f1810fb (plain)
1
2
3
4
5
6
7
8
9
import { Image } from '@tiptap/extension-image';
import { defaultMarkdownSerializer } from 'prosemirror-markdown/src/to_markdown';

const ExtendedImage = Image.extend({
  defaultOptions: { inline: true },
});

export const tiptapExtension = ExtendedImage;
export const serializer = defaultMarkdownSerializer.nodes.image;