Is there a way to set the maxlength for input in the rich text area? I know with other inputs you can use an html attribute, but the rich text didn’t respond to it. I looked up restricting it via javascript:
var editor = new RichTextEditor("#rich-text-area", { maxHTMLLength: 200 });
But wasn’t sure if it applied to the Weweb rich text editor. I want to be able to restrict the max character length of a post/entry, as well as a minimum. Thanks in advance for any assistance.