diff --git a/lib/models/documents/attribute.dart b/lib/models/documents/attribute.dart index 453a9236..0aac8749 100644 --- a/lib/models/documents/attribute.dart +++ b/lib/models/documents/attribute.dart @@ -43,6 +43,27 @@ class Attribute { static final BlockQuoteAttribute blockQuote = BlockQuoteAttribute(); + static final Set inlineKeys = { + Attribute.bold.key, + Attribute.italic.key, + Attribute.underline.key, + Attribute.strikeThrough.key, + Attribute.link.key + }; + + static final Set blockKeys = { + Attribute.header.key, + Attribute.list.key, + Attribute.codeBlock.key, + Attribute.blockQuote.key, + }; + + static final Set blockKeysExceptHeader = { + Attribute.list.key, + Attribute.codeBlock.key, + Attribute.blockQuote.key, + }; + static Attribute get h1 => HeaderAttribute(level: 1); static Attribute get h2 => HeaderAttribute(level: 2); diff --git a/lib/models/rules/insert.dart b/lib/models/rules/insert.dart index 529dd8da..4715ae87 100644 --- a/lib/models/rules/insert.dart +++ b/lib/models/rules/insert.dart @@ -155,8 +155,12 @@ class AutoExitBlockRule extends InsertRule { return null; } - // retain(1) should be '\n', set it with no attribute (default to null) - return Delta()..retain(index)..retain(1); + final attributes = cur.attributes ?? {}; + String k = attributes.keys + .firstWhere((k) => Attribute.blockKeysExceptHeader.contains(k)); + attributes[k] = null; + // retain(1) should be '\n', set it with no attribute + return Delta()..retain(index)..retain(1, attributes); } }