UNPKG

@atlaskit/editor-core

Version:

A package contains Atlassian editor core functionality

16 lines (13 loc) 270 B
import { MarkSpec, marks } from '../../prosemirror'; import { FONT_STYLE } from '../groups'; /** * @name strong_mark */ export interface Definition { type: 'strong'; } export const strong: MarkSpec = { ...marks.strong, inclusive: true, group: FONT_STYLE, };