Socket
Socket
Sign inDemoInstall

ckeditor5-letter-case

Package Overview
Dependencies
5
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ckeditor5-letter-case

simple letter case convert plugin for ckeditor5


Version published
Weekly downloads
5
Maintainers
1
Created
Weekly downloads
 

Readme

Source

CKEditor 5 letter Case Plugin


This simple plugin allow you to change between lower case and upper case letters, capitalize, or to mix case the text selection in the ckeditor 5.

Issues

Feel free to submit issues and enhancement requests.

Usage

In your ckeditor5 project:

npm i ckeditor5-letter-case

or

yarn add ckeditor5-letter-case

Update src/ckeditor.js with:

import LetterCase from 'ckeditor5-letter-case';

Editor.builtinPlugins = [
  // ...
  LetterCase,
  // ...
];

Editor.defaultConfig = {
  toolbar: {
    items: [
      // ...
      'LetterCase',
      // ...
    ]
  },
};

Then

npm run build

or

yarn build

License

Licensed under the terms of GNU General Public License Version 2 or later.

Keywords

FAQs

Last updated on 10 Feb 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc