-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] TinyMCE Editor #277
Comments
Done 💪🏻 |
Thank you for your request @TCB13 |
Thank you for including this @CorentinTh ! It also has a menu that can be toggled to have more options, one of them is I usually go with this config: tinymce.init({
selector: "textarea",
height: 800,
menubar: true,
plugins: [
"advlist autolink lists link image charmap anchor",
"searchreplace code",
"table paste code help wordcount"
],
toolbar: "undo redo | formatselect | " +
"bold italic backcolor | alignleft aligncenter " +
"alignright alignjustify | bullist numlist outdent indent | " +
"removeformat | help",
content_style: "body { font-family:Helvetica,Arial,sans-serif; font-size:14px }"
}); This will give me a very complete editor, example here: https://tcb13.com/demo/mce/ |
Hello,
Thank you for the great set of tool and nice UI it has.
I would like to request the TinyMCE editor to be added to the Web Tools. Sometimes it's useful to be able to quickly format some text with a WYSIWYG editor and output the HTML.
Thank you.
The text was updated successfully, but these errors were encountered: