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