mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00

* feat(new tool): Markdown to HTML Fix partially #538 * feat: add print button * Update src/tools/markdown-to-html/index.ts * Update src/tools/markdown-to-html/markdown-to-html.vue --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
12 lines
409 B
TypeScript
12 lines
409 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'),
|
|
});
|