Skip to content
Snippets Groups Projects
Commit ee7c4a6e authored by chris's avatar chris
Browse files

fix block quote tool

parent 3921220c
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@ import {
disallowPasteImagesPlugin,
BlockDropDownToolGroupService,
AskAiContentService,
BlockQuoteService,
YjsService,
} from 'wax-prosemirror-services';
......@@ -228,6 +229,7 @@ export default {
'StrikeThrough',
],
},
'BlockQuoteTool',
'HighlightToolGroup',
'TransformToolGroup',
'CustomTagInline',
......@@ -331,6 +333,7 @@ export default {
services: [
// new YjsService(),
new BlockDropDownToolGroupService(),
new BlockQuoteService(),
new AskAiContentService(),
new CustomTagService(),
new DisplayBlockLevelService(),
......
......@@ -3,7 +3,7 @@ import ExtractProseService from './ExtractProseService/ExtractProseService';
import ParagraphContinuedService from './ParagraphContinuedService/ParagraphContinuedService';
import ParagraphService from './ParagraphService/ParagraphService';
import SourceNoteService from './SourceNoteService/SourceNoteService';
import BlockQuoteService from './BlockQuoteService/BlockQuoteService';
// import BlockQuoteService from './BlockQuoteService/BlockQuoteService';
import TextToolGroupService from './TextToolGroupService/TextToolGroupService';
export default [
......@@ -12,6 +12,6 @@ export default [
new ParagraphContinuedService(),
new ParagraphService(),
new SourceNoteService(),
new BlockQuoteService(),
// new BlockQuoteService(),
new TextToolGroupService(),
];
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment