rails--rails/actiontext
Petrik 0a583c73c1 Change form_with to generate non remote forms by default
`form_with` would generate a remote form by default.
This confused users because they were forced to handle remote requests.

All new 6.1 applications will generate non-remote forms by default.
When upgrading a 6.0 application you can enable remote forms by default by
setting `config.action_view.form_with_generates_remote_forms` to `true`.
2020-12-01 21:14:37 +01:00
..
app Disentangle Action Text from ApplicationController 2020-10-30 01:01:42 +00:00
bin
db/migrate Allow changing text and blob size without giving the `limit` option 2019-01-29 06:49:32 +09:00
lib Merge pull request #40673 from jonathanhefner/actiontext-test-install-generator 2020-11-27 20:35:08 +01:00
test Change form_with to generate non remote forms by default 2020-12-01 21:14:37 +01:00
.gitignore Remove redundant .gitignore entries 2020-02-07 14:05:23 -06:00
CHANGELOG.md Add support for eager loading all rich text associations at once (#39397) 2020-11-24 18:19:46 +01:00
MIT-LICENSE Bump license years from 2019 to 2020 [ci skip] 2020-01-01 15:10:31 +05:30
README.md Add Action Text to guides [ci skip] 2019-01-05 13:30:37 +02:00
Rakefile Add ActionDispatch::SystemTestCase#fill_in_rich_text_area 2019-05-13 12:44:06 -04:00
actiontext.gemspec Update the Rails mailing list URLs to new discuss discourse URL [ci skip] 2020-04-02 22:00:28 +05:30
package.json Preparing for 6.1.0.rc1 release 2020-11-02 21:12:47 +00:00

README.md

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.

License

Action Text is released under the MIT License.