2024-08-25 22:57:07 +02:00
|
|
|
import { Markdown } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-10-19 21:08:08 +08:00
|
|
|
import { translate as t } from '@/plugins/i18n.plugin';
|
2024-08-25 22:57:07 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-10-19 21:08:08 +08:00
|
|
|
name: t('tools.markdown-to-html.title'),
|
2024-08-25 22:57:07 +02:00
|
|
|
path: '/markdown-to-html',
|
2024-10-19 21:08:08 +08:00
|
|
|
description: t('tools.markdown-to-html.description'),
|
2024-08-25 22:57:07 +02:00
|
|
|
keywords: ['markdown', 'html', 'converter', 'pdf'],
|
|
|
|
component: () => import('./markdown-to-html.vue'),
|
|
|
|
icon: Markdown,
|
|
|
|
createdAt: new Date('2024-08-25'),
|
|
|
|
});
|