20 lines
464 B
TypeScript
20 lines
464 B
TypeScript
import { EditorState } from 'prosemirror-state'
|
|
import { Mark, MarkType } from 'prosemirror-model'
|
|
|
|
export default function getMarkAttrs(state: EditorState, type: MarkType) {
|
|
const { from, to } = state.selection
|
|
let marks: Mark[] = []
|
|
|
|
state.doc.nodesBetween(from, to, node => {
|
|
marks = [...marks, ...node.marks]
|
|
})
|
|
|
|
const mark = marks.find(markItem => markItem.type.name === type.name)
|
|
|
|
if (mark) {
|
|
return { ...mark.attrs }
|
|
}
|
|
|
|
return {}
|
|
}
|