module ActionText
Action Text
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. The rich text content generated by the Trix editor is saved in its own RichText
model that’s associated with any existing Active Record model in the application. Any embedded images (or other attachments) are automatically stored using Active Storage and associated with the included RichText
model.
You can read more about Action Text in the Action Text Overview guide.
Development
The JavaScript for Action Text is distributed both as a npm module under @rails/actiontext and via the asset pipeline as actiontext.js (and we mirror Trix as trix.js). To ensure that the latter remains in sync, you must run yarn build
and checkin the artifacts whenever the JavaScript source or the Trix dependency is bumped. CSS changes must be brought over manually to app/assets/stylesheets/trix.css
License
Action Text is released under the MIT License.
Public class methods
Returns the currently loaded version of Action Text as a Gem::Version
.
Source code GitHub
# File actiontext/lib/action_text/gem_version.rb, line 7
def self.gem_version
Gem::Version.new VERSION::STRING
end
Source code GitHub
# File actiontext/lib/action_text.rb, line 47
def html_document_class
return @html_document_class if defined?(@html_document_class)
@html_document_class =
defined?(Nokogiri::HTML5) ? Nokogiri::HTML5::Document : Nokogiri::HTML4::Document
end
Source code GitHub
# File actiontext/lib/action_text.rb, line 53
def html_document_fragment_class
return @html_document_fragment_class if defined?(@html_document_fragment_class)
@html_document_fragment_class =
defined?(Nokogiri::HTML5) ? Nokogiri::HTML5::DocumentFragment : Nokogiri::HTML4::DocumentFragment
end
Returns the currently loaded version of Action Text as a Gem::Version
.
Source code GitHub
# File actiontext/lib/action_text/version.rb, line 9
def self.version
gem_version
end
Namespace
ActionText::
Attachable ActionText::
Attachables ActionText::
Attachment ActionText::
AttachmentGallery ActionText::
Attachments ActionText::
Attribute ActionText::
Content ActionText::
ContentHelper ActionText::
EncryptedRichText ActionText::
Encryption ActionText::
Engine ActionText::
FixtureSet ActionText::
Fragment ActionText::
HtmlConversion ActionText::
PlainTextConversion ActionText::
RichText ActionText::
Serialization ActionText::
SystemTestHelper ActionText::
TagHelper ActionText::
TrixAttachment ActionText::
VERSION
Definition files
actiontext/
app/ helpers/ action_text/ content_helper.rb actiontext/
app/ helpers/ action_text/ tag_helper.rb actiontext/
app/ models/ action_text/ encrypted_rich_text.rb actiontext/
app/ models/ action_text/ record.rb actiontext/
app/ models/ action_text/ rich_text.rb
25 More Less
actiontext/
lib/ action_text.rb actiontext/
lib/ action_text/ attachable.rb actiontext/
lib/ action_text/ attachables/ content_attachment.rb actiontext/
lib/ action_text/ attachables/ missing_attachable.rb actiontext/
lib/ action_text/ attachables/ remote_image.rb actiontext/
lib/ action_text/ attachment.rb actiontext/
lib/ action_text/ attachment_gallery.rb actiontext/
lib/ action_text/ attachments/ caching.rb actiontext/
lib/ action_text/ attachments/ minification.rb actiontext/
lib/ action_text/ attachments/ trix_conversion.rb actiontext/
lib/ action_text/ attribute.rb actiontext/
lib/ action_text/ content.rb actiontext/
lib/ action_text/ deprecator.rb actiontext/
lib/ action_text/ encryption.rb actiontext/
lib/ action_text/ engine.rb actiontext/
lib/ action_text/ fixture_set.rb actiontext/
lib/ action_text/ fragment.rb actiontext/
lib/ action_text/ gem_version.rb actiontext/
lib/ action_text/ html_conversion.rb actiontext/
lib/ action_text/ plain_text_conversion.rb actiontext/
lib/ action_text/ rendering.rb actiontext/
lib/ action_text/ serialization.rb actiontext/
lib/ action_text/ system_test_helper.rb actiontext/
lib/ action_text/ trix_attachment.rb actiontext/
lib/ action_text/ version.rb