tneotia / html-editor-enhanced

A Flutter package that provides a WYSIWYG editor backed by flutter_inappwebview and the Summernote library.
https://pub.dev/packages/html_editor_enhanced
MIT License
269 stars 318 forks source link

[FEATURE]: Multi-platform text editor #485

Open Aniket76 opened 6 months ago

Aniket76 commented 6 months ago

Is your feature request related to a problem? Please describe. By any chance are you guys planning to add multiple platform editors into this? This is an HTML editor i.e. the output we get is in HTML format but I'm looking for different output for different platforms. Eg: Suppose we highlight a text a make it bold through the editor then the output string will be like this "Bold Word", instead of having only one output we can have multiple outputs based on the platform. If we were looking for HTML output then the initial output string is fine but if we want output for Whatsapp then we should get something like this *Bold Word*.

Describe the solution you'd like The solution seems simple to me, we just need to replace the tag with special characters for example this (Bold Word) will become this (*Bold Word*).