feat: added option to disable automatic list conversion (#2011)

pull/2008/head^2 v9.5.17
Cat 9 months ago committed by GitHub
parent ab91df27e5
commit 480861b098
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      lib/src/models/config/editor/editor_configurations.dart
  2. 3
      lib/src/models/config/raw_editor/raw_editor_configurations.dart
  3. 2
      lib/src/widgets/editor/editor.dart
  4. 6
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -53,6 +53,7 @@ class QuillEditorConfigurations extends Equatable {
this.onSingleLongTapStart,
this.onSingleLongTapMoveUpdate,
this.onSingleLongTapEnd,
this.enableMarkdownStyleConversion = true,
this.embedBuilders,
this.unknownEmbedBuilder,
this.linkActionPickerDelegate = defaultLinkActionPickerDelegate,
@ -127,6 +128,13 @@ class QuillEditorConfigurations extends Equatable {
final bool scrollable;
final double scrollBottomInset;
/// Configuration to enable or disable automatic Markdown style conversions.
///
/// This setting controls the behavior of input. Specifically, when enabled,
/// entering '1.' followed by a space or '-' followed by a space
/// will automatically convert the input into a Markdown list format.
final bool enableMarkdownStyleConversion;
/// Additional space around the content of this editor.
/// by default will be [EdgeInsets.zero]
final EdgeInsetsGeometry padding;
@ -385,6 +393,7 @@ class QuillEditorConfigurations extends Equatable {
bool? checkBoxReadOnly,
bool? disableClipboard,
bool? scrollable,
bool? enableMarkdownStyleConversion,
double? scrollBottomInset,
EdgeInsetsGeometry? padding,
bool? autoFocus,
@ -439,6 +448,8 @@ class QuillEditorConfigurations extends Equatable {
scrollable: scrollable ?? this.scrollable,
scrollBottomInset: scrollBottomInset ?? this.scrollBottomInset,
padding: padding ?? this.padding,
enableMarkdownStyleConversion:
enableMarkdownStyleConversion ?? this.enableMarkdownStyleConversion,
autoFocus: autoFocus ?? this.autoFocus,
isOnTapOutsideEnabled:
isOnTapOutsideEnabled ?? this.isOnTapOutsideEnabled,

@ -67,6 +67,7 @@ class QuillRawEditorConfigurations extends Equatable {
this.customActions,
this.expands = false,
this.isOnTapOutsideEnabled = true,
this.enableMarkdownStyleConversion = true,
this.onTapOutside,
this.keyboardAppearance,
this.enableInteractiveSelection = true,
@ -100,6 +101,8 @@ class QuillRawEditorConfigurations extends Equatable {
/// Additional space around the editor contents.
final EdgeInsetsGeometry padding;
final bool enableMarkdownStyleConversion;
/// Whether the text can be changed.
///
/// When this is set to true, the text cannot be modified

@ -236,6 +236,8 @@ class QuillEditorState extends State<QuillEditor>
focusNode: widget.focusNode,
scrollController: widget.scrollController,
scrollable: configurations.scrollable,
enableMarkdownStyleConversion:
configurations.enableMarkdownStyleConversion,
scrollBottomInset: configurations.scrollBottomInset,
padding: configurations.padding,
readOnly: configurations.readOnly,

@ -785,10 +785,12 @@ class QuillRawEditorState extends EditorState
const olKeyPhrase = '1.';
const ulKeyPhrase = '-';
final enableMdConversion =
widget.configurations.enableMarkdownStyleConversion;
if (text.value == olKeyPhrase) {
if (text.value == olKeyPhrase && enableMdConversion) {
_updateSelectionForKeyPhrase(olKeyPhrase, Attribute.ol);
} else if (text.value == ulKeyPhrase) {
} else if (text.value == ulKeyPhrase && enableMdConversion) {
_updateSelectionForKeyPhrase(ulKeyPhrase, Attribute.ul);
} else {
return KeyEventResult.ignored;

Loading…
Cancel
Save