feat: added MarkdownEditor.vue

Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
Corentin Thomasset 2020-06-14 19:33:29 +02:00
parent eb4363244b
commit ffe25b87d2
6 changed files with 116 additions and 9 deletions

View file

@ -85,15 +85,22 @@ const toolsComponents = [
],
},
{
title: 'Miscellaneous',
title: 'Text',
child: [
{
icon: 'fa-align-left\n',
icon: 'fa-align-left',
text: 'Text stats',
path: '/text-stats',
component: () => import('./routes/tools/TextStats'),
keywords: ['word', 'count', 'size', 'bytes', 'length']
},
{
icon: 'fab fa-markdown',
text: 'Markdown editor',
path: '/markdown-editor',
component: () => import('./routes/tools/MarkdownEditor'),
keywords: ['text', 'html', 'markdown']
},
],
}
];