/
githubmirror
/
quill
Обзор
Документация
Войти
/
githubmirror
/
quill
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/website/src/data/docs.tsx
124 строки
2 KB
Jason Chen
Update website for 2.0 (#4121)
18 апр 2024, 05:48
Не верифицирован
18 апр 2024, 05:48
3454595
Код
Авторство
О чём код?
const items = [ { title: 'Quickstart', url: '/docs/quickstart', }, { title: 'Why Quill', url: '/docs/why-quill', }, { title: 'Installation', url: '/docs/installation', }, { title: 'Upgrading to 2.0', url: '/docs/upgrading-to-2-0', }, { title: 'Configuration', url: '/docs/configuration', }, { title: 'Formats', url: '/docs/formats', }, { title: 'API', url: '/docs/api', children: [ { title: 'Content', url: '/docs/api/#content', }, { title: 'Formatting', url: '/docs/api/#formatting', }, { title: 'Selection', url: '/docs/api/#selection', }, { title: 'Editor', url: '/docs/api/#editor', }, { title: 'Events', url: '/docs/api/#events', }, { title: 'Model', url: '/docs/api/#model', }, { title: 'Extension', url: '/docs/api/#extension', }, ], }, { title: 'Delta', url: '/docs/delta', }, { title: 'Modules', url: '/docs/modules', children: [ { title: 'Toolbar', url: '/docs/modules/toolbar', }, { title: 'Keyboard', url: '/docs/modules/keyboard', }, { title: 'History', url: '/docs/modules/history', }, { title: 'Clipboard', url: '/docs/modules/clipboard', }, { title: 'Syntax', url: '/docs/modules/syntax', }, ], }, { title: 'Customization', url: '/docs/customization', children: [ { title: 'Themes', url: '/docs/customization/themes', }, { title: 'Registries', url: '/docs/customization/registries', }, ], }, { title: 'Guides', url: '/docs/guides/designing-the-delta-format', children: [ { title: 'Designing the Delta Format', url: '/docs/guides/designing-the-delta-format', }, { title: 'Building a Custom Module', url: '/docs/guides/building-a-custom-module', }, { title: 'Cloning Medium with Parchment', url: '/docs/guides/cloning-medium-with-parchment', }, ], }, ]; export default items;