it-tools/src/tools/markdown-to-html/index.ts
2024-03-09 10:38:05 +01:00

13 lines
350 B
TypeScript

import { Markdown } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Markdown to html',
path: '/markdown-to-html',
description: '',
keywords: ['markdown', 'html', 'converter'],
component: () => import('./markdown-to-html.vue'),
icon: Markdown,
createdAt: new Date('2024-02-25'),
});