New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wikifactory/slate-edit-blockquote

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wikifactory/slate-edit-blockquote

A Slate plugin to handle keyboard events in blockquotes.

0.7.1
latest
Source
npm
Version published
Weekly downloads
789
-13.2%
Maintainers
2
Weekly downloads
 
Created
Source

@wikifactory/slate-edit-blockquote

NPM version Linux Build Status

A Slate plugin to handle keyboard events in blockquotes. Blockquotes can contain blocks.

Install

npm install @wikifactory/slate-edit-blockquote

Features

Natural keybindings:

  • Pressing Enter in an empty block of a blockquote, exits the blockquote
  • Pressing Backspace at the start of a block in a blockquote, unwraps from the blockquote

Simple Usage

import EditBlockquote from '@wikifactory/slate-edit-blockquote'

const plugins = [
  EditBlockquote()
]
Arguments

This plugin accepts options to redefine the following block types:

  • [type: String] — type for blockquotes
  • [typeDefault: String] — type for default block in blockquote.

Utilities

@wikifactory/slate-edit-blockquote exports utilities and changes:

utils.isSelectionInBlockquote

plugin.utils.isSelectionInBlockquote(value: Value) => Boolean

Return true if selection is inside a blockquote (and it can be unwrap).

changes.wrapInBlockquote

plugin.changes.wrapInBlockquote(editor: Editor) => Editor

Wrap current block in a new blockquote.

changes.unwrapBlockquote

plugin.changes.unwrapBlockquote(editor: Editor) => Editor

Unwrap from current blockquote if any.

Keywords

slate

FAQs

Package last updated on 20 Dec 2018

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