@@ -489,7 +489,11 @@ export class BlockNoteEditor<
489
489
this . resolveFileUrl = newOptions . resolveFileUrl ;
490
490
this . headless = newOptions . _headless ;
491
491
492
- if ( newOptions . collaboration && newOptions . initialContent ) {
492
+ const collaborationEnabled =
493
+ "collaboration" in this . extensions ||
494
+ "liveblocksExtension" in this . extensions ;
495
+
496
+ if ( collaborationEnabled && newOptions . initialContent ) {
493
497
// eslint-disable-next-line no-console
494
498
console . warn (
495
499
"When using Collaboration, initialContent might cause conflicts, because changes should come from the collaboration provider"
@@ -498,7 +502,7 @@ export class BlockNoteEditor<
498
502
499
503
const initialContent =
500
504
newOptions . initialContent ||
501
- ( options . collaboration
505
+ ( collaborationEnabled
502
506
? [
503
507
{
504
508
type : "paragraph" ,
@@ -930,7 +934,12 @@ export class BlockNoteEditor<
930
934
for ( const mark of marks ) {
931
935
const config = this . schema . styleSchema [ mark . type . name ] ;
932
936
if ( ! config ) {
933
- if ( mark . type . name !== "link" ) {
937
+ if (
938
+ // Links are not considered styles in blocknote
939
+ mark . type . name !== "link" &&
940
+ // "blocknoteIgnore" tagged marks (such as comments) are also not considered BlockNote "styles"
941
+ ! mark . type . spec . blocknoteIgnore
942
+ ) {
934
943
// eslint-disable-next-line no-console
935
944
console . warn ( "mark not found in styleschema" , mark . type . name ) ;
936
945
}
0 commit comments