Skip to content

sereneinserenade/tiptap-docs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository has been migrated to a new organization (Read more: ueberdosis/tiptap#759)

Introduction

tiptap is a renderless and extendable rich-text editor for Vue.js

Why tiptap was built

The guys behind überdosis were looking for a text editor for Vue.js and found some solutions that didn't really satisfy their needs. The editor should be easy to extend and not based on old dependencies such as jQuery. For React there is already a great editor called Slate.js, which impresses with its modularity. They came across ProseMirror and decided to build on top of it. ProseMirror is a toolkit for building rich-text editors that are already in use at many well-known companies such as Atlassian or New York Times.

What does renderless mean?

With renderless components you'll have full control over markup and styling. tiptap doesn't tell you what a menu should look like or where it should be rendered in the DOM. That's all up to you. There is also a good article about renderless components by Adam Wathan.

::: tip No styling by default tiptap comes without any CSS. It's a feature – not a bug. :::

How is the data stored under the hood?

You can save your data as a raw HTML string or can get a JSON-serializable representation of your document. And of course, you can pass these two types back to the editor.

Examples

To check out some live examples, visit tiptap.dev.

Who is using tiptap?

  • Scrumpy
  • GitLab
  • Statamic
  • Craft CMS
  • ApostropheCMS
  • Directus
  • Nextcloud

Contributing

Please see the CONTRIBUTING file for details. If you want to contribute with the documentation, install its dependencies and run Vuepress

yarn install
yarn start

Credits

License

The MIT License (MIT). Please see the License File for more information.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.1%
  • CSS 3.9%