Welcome to mirror list, hosted at ThFree Co, Russian Federation.

paragraph.js « extensions « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c63b64fd784d136a39c8ac1ec0d2ee1bbfc2fd28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Paragraph from '@tiptap/extension-paragraph';

export default Paragraph.extend({
  addOptions() {
    return {
      ...this.parent?.(),
      HTMLAttributes: {
        dir: 'auto',
      },
    };
  },
});