Features
Feature docs are grouped to match the home page feature set.
Feature groups
- Typography and Text
- Structure and Lists
- Media and Embeds
- Code and Devtools
- Interaction and Productivity
- Customization and Theming
Base runtime
import { createEditorSystem, RichText, richTextExtension } from '@lyfie/luthor-headless';
const extensions = [richTextExtension] as const;
const { Provider } = createEditorSystem<typeof extensions>();
export function App() {
return (
<Provider extensions={extensions}>
<RichText placeholder="Write here..." />
</Provider>
);
}