2.4.0 • Published 8 months ago

pocket-editor v2.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

This is yet another wysiwyg editor, it focuses mainly on two things:

  • Very fast load time
  • Reliable markdown output

Install

npm install pocket-editor

What you can do

interface Options {
  text?: string
  id?: string
  defer?: true | number 
}

class PocketEditor {
  constructor(selector: string, options?: Options)
  get value(): string
  set value(string): void
  oninput: ((content: string) => void) => void
}

How to use

<body>
    <div id="wrapper"></div>
</body>
import PocketEditor from "pocket-editor"
import "pocket-editor/style.css"

const editor = new PocketEditor("#wrapper")

editor.value = "## Hello world !!"

editor.oninput((content) => {
    console.log(content)
})

Keybindings

KeybindAction
Ctrl + Shift + 1To big heading
Ctrl + Shift + 2To medium heading
Ctrl + Shift + 3To small heading
Ctrl + Shift + 4To bullet list
Ctrl + Shift + 5To todo list
Ctrl + Shift + 6To normal line

Ctrl is Cmd key on MacOS

Developement

# Install pnpm to use these scripts
npm i -g pnpm

# First install all
pnpm i -r

pnpm dev
pnpm preview
pnpm build
2.4.0

8 months ago

2.3.0

10 months ago

2.2.1

12 months ago

2.2.0

1 year ago

2.1.1

1 year ago

2.2.2

12 months ago

2.1.0

1 year ago

2.0.0

1 year ago

1.11.2

1 year ago

1.11.1

1 year ago

1.11.0

1 year ago

1.10.1

1 year ago

1.9.3

2 years ago

1.9.2

2 years ago

1.10.0

2 years ago

1.9.1

2 years ago

1.8.2

2 years ago

1.7.3

2 years ago

1.9.0

2 years ago

1.8.1

2 years ago

1.7.2

2 years ago

1.8.0

2 years ago

1.7.1

2 years ago

1.7.0

2 years ago

1.8.7

2 years ago

1.8.6

2 years ago

1.8.5

2 years ago

1.8.4

2 years ago

1.8.3

2 years ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.3

2 years ago

1.5.2

2 years ago

1.5.1

2 years ago

1.5.0

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago