Forms
A drop-in WYSIWYG solution built for Rails developers in mind.
Action Text brings rich text content and editing to Rails. It includes the Trix editor that handles everything from formatting to links to quotes to lists to embedded images and galleries.
Use the custom ActionText editor design made exclusively for the Hound theme.
<%= form_with model: message do |form| %>
<div class="form-group">
<%= form.label :content, class: "form-label" %>
<%= form.rich_text_area :content %>
</div>
<% end %>
= form_with model: message do |form| %>
.form-group
= form.label :content, class: "form-label"
= form.rich_text_area :content