0.0.2 • Published 7 months ago

@knightshrestha/rich_text_editor v0.0.2

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

Rich Text Editor

A simple rich text editor.

Badges

MIT License

GitHub last commit

NPM Version

Screenshots

App Screenshot

Features

  • Rich Text Editor with svelte and tiptap

Installation

Install my-project with npm

npm install @knightshrestha/rich_text_editor

Usage/Examples

<script lang="ts">
  import RichTextEditor from "$lib/components/RTE.svelte";

  let description = $state('');
</script>

<RichTextEditor
  initialValue={description}
  onChange={(data: string) => {
    description = data;
  }}
/>

License

This library is released under MIT licence.

Tech Stack