Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ckeditor5-letter-case

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ckeditor5-letter-case

simple letter case convert plugin for ckeditor5

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
30
increased by114.29%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 02 Oct 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc