customOptions property
List of custom options to be added to the summernote initialiser.
Example of element in the list: "codeviewFilterRegex: 'custom-regex',"
. This will add the
option codeviewFilterRegex: 'custom-regex'
to the summernote initialiser.
Don't forget the comma at the end of the string.
The options will be joined together with a comma: customOptions.join("\n")
.
DO NOT ADD options which are already handled by the adapter.
Implementation
final List<String>? customOptions;