diff options
Diffstat (limited to '')
-rw-r--r-- | src/router.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/router.js b/src/router.js index 3547180..17cd3e9 100644 --- a/src/router.js +++ b/src/router.js @@ -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'] + }, ], } ]; |