You are here

README.txt in CKEditor Find/Replace 8

CKEditor Find/Replace
--------------------------------------------------------------------------------

This plugin adds Find and Replace functionality for CKEditor in Drupal 8:

- Quickly search the text as well as replace words inside it.
- Common options available for matching:
  - case
  - whole word
  - cyclic
  
INSTALLATION
------------

Manual
------
1. Download the plugin from http://ckeditor.com/addon/find.
2. Place the 'find' plugin directory within the root libraries folder in a
   CKEditor plugin subdirectory (DRUPAL_ROOT/libraries/ckeditor/plugins).
3. Enable the CKEditor Find/replace module.
4. Configure your WYSIWYG toolbar to include the buttons.

Composer
--------
1. Add the following repository to you composer.json file:

{
  "repositories": [
    {
      "type": "package",
      "package": {
        "name": "ckeditor/find",
        "version": "4.8.0",
        "type": "drupal-library",
        "extra": {
          "installer-name": "find"
        },
        "dist": {
          "url": "https://download.ckeditor.com/find/releases/find_4.8.0.zip",
          "type": "zip"
        }
      }
    }
  ]
}

2. Add the following installer-path to your composer file:

{
  "extra": {
    "installer-paths": {
      "libraries/ckeditor/plugins/{$name}": ["ckeditor/find"]
    }
  }
}

3. Run `composer require drupal/ckeditor_find`
3. Enable the CKEditor Find/replace module.
4. Configure your WYSIWYG toolbar to include the buttons.

File

README.txt
View source
  1. CKEditor Find/Replace
  2. --------------------------------------------------------------------------------
  3. This plugin adds Find and Replace functionality for CKEditor in Drupal 8:
  4. - Quickly search the text as well as replace words inside it.
  5. - Common options available for matching:
  6. - case
  7. - whole word
  8. - cyclic
  9. INSTALLATION
  10. ------------
  11. Manual
  12. ------
  13. 1. Download the plugin from http://ckeditor.com/addon/find.
  14. 2. Place the 'find' plugin directory within the root libraries folder in a
  15. CKEditor plugin subdirectory (DRUPAL_ROOT/libraries/ckeditor/plugins).
  16. 3. Enable the CKEditor Find/replace module.
  17. 4. Configure your WYSIWYG toolbar to include the buttons.
  18. Composer
  19. --------
  20. 1. Add the following repository to you composer.json file:
  21. {
  22. "repositories": [
  23. {
  24. "type": "package",
  25. "package": {
  26. "name": "ckeditor/find",
  27. "version": "4.8.0",
  28. "type": "drupal-library",
  29. "extra": {
  30. "installer-name": "find"
  31. },
  32. "dist": {
  33. "url": "https://download.ckeditor.com/find/releases/find_4.8.0.zip",
  34. "type": "zip"
  35. }
  36. }
  37. }
  38. ]
  39. }
  40. 2. Add the following installer-path to your composer file:
  41. {
  42. "extra": {
  43. "installer-paths": {
  44. "libraries/ckeditor/plugins/{$name}": ["ckeditor/find"]
  45. }
  46. }
  47. }
  48. 3. Run `composer require drupal/ckeditor_find`
  49. 3. Enable the CKEditor Find/replace module.
  50. 4. Configure your WYSIWYG toolbar to include the buttons.