mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
13 lines
434 B
TypeScript
13 lines
434 B
TypeScript
import { Markdown } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'Markdown to HTML',
|
|
path: '/markdown-to-html',
|
|
description: 'Convert Markdown to Html and allow to print (as PDF)',
|
|
keywords: ['markdown', 'html', 'converter', 'pdf'],
|
|
component: () => import('./markdown-to-html.vue'),
|
|
icon: Markdown,
|
|
createdAt: new Date('2024-08-25'),
|
|
category: 'Converter',
|
|
});
|