@atlaskit/editor-core
Version:
A package contains Atlassian editor core functionality
33 lines • 656 B
JavaScript
import { createSchema } from './create-schema';
export var bitbucketSchema = 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',
]
});
//# sourceMappingURL=bitbucket-schema.js.map