it-tools/src/tools/markdown-to-html/index.ts
2024-10-19 21:08:08 +08:00

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'),
});