Skip to content

prosekit/extensions/mark-rule

MarkRuleOptions

The options for defineMarkRule.

attrs?: null | Attrs | ((match: RegExpMatchArray) => null | Attrs)

Attributes to set on the mark. If a function is provided, it will be called with the matched result from the regular expression.

Default: null

regex: RegExp

The regular expression to match against. It must has a g flag to match all instances of the mark.

type: string | MarkType

The mark type to apply to the matched text.

defineMarkRule

ts
function defineMarkRule(options: MarkRuleOptions): Extension<ExtensionTyping<any, any, any>>

A mark rule is something that can automatically apply marks to text if it matches a certain pattern, and remove them if it doesn't match anymore.