Merge pull request #49556 from mguan2020/my_new_branch

Fixed formatting in Action Text documentation to make it more consistent. [ci skip]
This commit is contained in:
Jonathan Hefner 2023-10-10 23:06:26 -05:00 committed by GitHub
commit 8776e951f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,11 +37,11 @@ and because WYSIWYG HTML editors are enormous in scope, each
browser's implementation has its own set of bugs and quirks,
and JavaScript developers are left to resolve the inconsistencies.
Trix sidesteps these inconsistencies by treating contenteditable
Trix sidesteps these inconsistencies by treating `contenteditable`
as an I/O device: when input makes its way to the editor, Trix converts that input
into an editing operation on its internal document model, then re-renders
that document back into the editor. This gives Trix complete control over what
happens after every keystroke, and avoids the need to use execCommand at all.
happens after every keystroke, and avoids the need to use `execCommand` at all.
## Installation