mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 04:00:59 +01:00
29 lines
956 B
TypeScript
29 lines
956 B
TypeScript
import { FeatureType } from './src/components/sheets/new-feature';
|
|
|
|
export const features: FeatureType[] = [
|
|
{
|
|
title: 'A brand new editor',
|
|
body: 'We have switched to a completely new editor for Notesnook. Why? Because we wanted something that was extensible and future proof.'
|
|
},
|
|
{
|
|
title: 'Configurable toolbar',
|
|
body: "Everyone's deserves their own toolbar that fits their needs perfectly. Go to Settings > Editor Settings and build the toolbar you want."
|
|
},
|
|
{
|
|
title: 'Outline list',
|
|
body: 'Click on the + button in editor to try it out.'
|
|
},
|
|
{
|
|
title: 'Task list',
|
|
body: 'A new task list that keeps track of your progess and supports reordering items with drag & drop.'
|
|
},
|
|
{
|
|
title: 'Math support',
|
|
body: 'Inline and multi-line math support is here using KaTex.'
|
|
},
|
|
{
|
|
title: 'Overhaul Settings UI',
|
|
body: 'New Settings that are more organized and look miles better than before.'
|
|
}
|
|
];
|