Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign authored May 11, 2023
1 parent b930a88 commit 30f9b1d
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Visol.Neos.ClipboardInputTransformation

Define a map of search and replacement strings, which are transformed when pasting content into the rich-text editor
```sh
composer require visol/neos-clipboardinputtransformation
```

Define a map of search and replacement strings, which are transformed when pasting content into the rich-text editor.

```yaml
Neos:
Neos:
Ui:
frontendConfiguration:
"Visol.Neos.ClipboardInputTransformation":
replacements:
# for example replace LSEP and PSEP unicode chars
- search: "\u2029"
replace: ""
- search: "\u2028"
replace: ""
# or replace any string
- search: "speak now"
replace: "echo now"
```
# Credits
Expand Down

0 comments on commit 30f9b1d

Please sign in to comment.