mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
13 lines
465 B
TypeScript
13 lines
465 B
TypeScript
import { Markdown } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate as t } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: t('tools.markdown-to-html.title'),
|
|
path: '/markdown-to-html',
|
|
description: t('tools.markdown-to-html.description'),
|
|
keywords: ['markdown', 'html', 'converter', 'pdf'],
|
|
component: () => import('./markdown-to-html.vue'),
|
|
icon: Markdown,
|
|
createdAt: new Date('2024-08-25'),
|
|
});
|