@atlaskit/adf-schema
Version:
Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs
21 lines (19 loc) • 361 B
JavaScript
import { strike as strikeFactory } from '../../next-schema/generated/markTypes';
/**
* @name strike_mark
*/
export const strike = strikeFactory({
parseDOM: [{
tag: 'strike'
}, {
tag: 's'
}, {
tag: 'del'
}, {
style: 'text-decoration',
getAttrs: value => value === 'line-through' && null
}],
toDOM() {
return ['s'];
}
});