UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

35 lines (33 loc) 566 B
import { Schema } from '../prosemirror'; import { createSchema } from './create-schema'; export const bitbucketSchema: Schema<any, any> = createSchema({ nodes: [ 'doc', 'paragraph', 'text', 'bulletList', 'orderedList', 'listItem', 'heading', 'blockquote', 'codeBlock', 'hardBreak', 'rule', 'image', 'mention', 'emoji', 'table', 'tableCell', 'tableHeader', 'tableRow' ], marks: [ 'em', 'strong', 'strike', 'link', 'mentionQuery', 'emojiQuery', 'code', ] });