Getting Started
Install
bash
pnpm installRun Docs Locally
bash
pnpm --filter docs-site docs:devMinimal Setup
ts
import { createEditorCore } from '@ly-editor/core'
import { createPluginRegistry } from '@ly-editor/plugin-kit'
const editor = createEditorCore({ initialText: 'Hello lyEditor' })
const plugins = createPluginRegistry({ locale: 'en-US' })