Chevron left

Forms

Action Text

Theme

Themes/hound/logo.svg

Hound

Framework

Tailwind CSS logo

Tailwind CSS

ActionText

Custom theme

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