module ActionView::Helpers::FormHelper

def rich_text_area(object_name, method, options = {})

#
#
end
form.rich_text_area :content, value: "

Default message

"
form_with(model: @message) do |form|

#
#
end
form.rich_text_area :content
form_with(model: @message) do |form|
==== Example

* [:data][:blob_url_template] - Defaults to rails_service_blob_url(":signed_id", ":filename").
* [:data][:direct_upload_url] - Defaults to +rails_direct_uploads_url+.
* :value - Adds a default value to the HTML input tag.
* :class - Defaults to "trix-content" which ensures default styling is applied.
==== Options

that Trix will write to on changes, so the content will be sent on form submissions.
Returns a +trix-editor+ tag that instantiates the Trix JavaScript editor as well as a hidden field
def rich_text_area(object_name, method, options = {})
  Tags::ActionText.new(object_name, method, self, options).render
end