1.1.32 • Published 3 years ago

textarena v1.1.32

Weekly downloads
-
License
AGPL-3.0-only
Repository
github
Last release
3 years ago

Textarena

Build

Textarena is a simple WYSIWYG editor

Demo

Table of Contents

Usage

const elem = document.getElementById('textarena-container');
const initData = {
  // Initial html content of Textarena container
  content: '<h1>Hello, Textarena!</h1>',
};
const textarena = new Textarena(
  elem,
  // Optional configuration object
  {
    // set false to disable editing capabilities
    editable: true,
    // callback which receives TextarenaData object which contains html content of the Textarena container
    onChange: (data) => console.log(`New html: ${data.content}`),
    // Initial Textarena content and metadata
    initData,
  }
);

This will render editable text specified via initData variable inside textarena-container element in the DOM.

You can specify elements styles, insert lists, heading and links via toolbar

Toolbar

Select text to view toolbar options. Hold Ctrl (Cmd ⌘ on Mac) and Alt (Option ⌥ on Mac) to see shortcut tips.

When cursor is at the empty paragraph, creator bar helper will appear

CreatorBar

Click at the plus sign or hit the Alt (Option ⌥ on Mac) - Q shortcut to expand creator bar

CreatorBarOptions

You can click on the item to insert it at the cursor position or use a keyboard.

Run for development

Install all Textarena dependencies by yarn:

yarn

Start the developmnet server:

yarn start

Open in your browser http://localhost:8080.

Recomendations

Add paddings arround the editor:

.textarena-editor {
  padding: 1rem;
}

This will make it easier to select text with the mouse.

1.1.32

3 years ago

1.1.31

3 years ago

1.1.29

3 years ago

1.1.28

3 years ago

1.1.30

3 years ago

1.1.27

3 years ago

1.1.26

3 years ago

1.1.23

3 years ago

1.1.25

3 years ago

1.1.24

3 years ago

1.1.22

3 years ago

1.1.21

3 years ago

1.1.20

3 years ago

1.1.19

3 years ago

1.1.18

3 years ago

1.1.17

3 years ago

1.1.12

3 years ago

1.1.11

3 years ago

1.1.16

3 years ago

1.1.15

3 years ago

1.1.14

3 years ago

1.1.13

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.10

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.1.5

3 years ago

1.0.6

3 years ago

1.1.4

3 years ago

1.0.5

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago