schlechtenburg/packages/docs/lib/index.md

21 lines
851 B
Markdown
Raw Normal View History

2022-03-16 22:15:52 +00:00
<script setup>
2022-03-22 20:16:26 +00:00
import { withBase } from 'vitepress';
import ExampleEditor from './ExampleEditor';
2022-03-16 22:15:52 +00:00
</script>
2022-03-17 17:59:51 +00:00
# Yet another WYSIWYG editor
2022-03-16 22:15:52 +00:00
Schlechtenburg is an experimental WYSIWYG editor framework made with Vue 3 and TypeScript. It takes cues from both Wordpress' Gutenberg editor and CKEditor, though it tries to become a best of both worlds; a very lightweight, easily extensible core, written with modern components and the accompanying state management.
It inputs and outputs a tree of JSON-serializable data.
2022-03-17 17:59:51 +00:00
This is still in the Proof-of-concept phase.
<div class="cta-row">
2022-03-22 20:16:26 +00:00
<a :href="withBase('/guide/why')" class="button button_cta">Why Schlechtenburg?</a>
<a :href="withBase('guide/introduction')" class="button">Get Started</a>
<a :href="withBase('api')" class="button">See the API docs</a>
2022-03-17 17:59:51 +00:00
</div>
2022-03-16 22:15:52 +00:00
<ExampleEditor></ExampleEditor>