Checked list is already considered block

pull/541/head
X Code 3 years ago
parent 567315a5a2
commit aa213a5e9e
  1. 10
      lib/src/models/rules/insert.dart

@ -95,16 +95,6 @@ class PreserveBlockStyleOnInsertRule extends InsertRule {
resetStyle.addAll(Attribute.header.toJson());
}
// Similarly for the checked style
if (lineStyle.attributes[Attribute.list.key] == Attribute.checked) {
resetStyle.addAll(Attribute.checked.toJson());
}
// Similarly for the unchecked style
if (lineStyle.attributes[Attribute.list.key] == Attribute.unchecked) {
resetStyle.addAll(Attribute.unchecked.toJson());
}
// Go over each inserted line and ensure block style is applied.
final lines = data.split('\n');
final delta = Delta()..retain(index + (len ?? 0));

Loading…
Cancel
Save