summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/extensions/horizontal_rule.js
blob: c4f31e5f981d7d15695876a6a0762e663c447fb3 (plain)
1
2
3
4
5
6
7
8
9
10
import { nodeInputRule } from '@tiptap/core';
import { HorizontalRule } from '@tiptap/extension-horizontal-rule';

export default HorizontalRule.extend({
  addInputRules() {
    const hrInputRuleRegExp = /^---$/;

    return [nodeInputRule({ find: hrInputRuleRegExp, type: this.type })];
  },
});