<%= allowed_html_instructions %>
<%= t(".rich_text_notes_html") %><%= link_to_help("rte-help") %>
<% use_tinymce %>
<%= f.text_area :content, class: "mce-editor observe_textlength", id: "content" %>
<%= live_validation_for_field("content",
maximum_length: ArchiveConfig.CONTENT_MAX,
minimum_length: ArchiveConfig.CONTENT_MIN,
tooLongMessage: t(".content_too_long", count: ArchiveConfig.CONTENT_MAX),
tooShortMessage: t(".content_too_short", count: ArchiveConfig.CONTENT_MIN),
failureMessage: t(".content_required")) %>
<%= generate_countdown_html("content", ArchiveConfig.CONTENT_MAX) %>