From 8fab512a8f6fbf058dddf2022b788c16b281a937 Mon Sep 17 00:00:00 2001 From: Corentin THOMASSET Date: Sun, 25 Aug 2024 22:52:24 +0200 Subject: [PATCH] Update src/tools/markdown-to-html/index.ts --- src/tools/markdown-to-html/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/markdown-to-html/index.ts b/src/tools/markdown-to-html/index.ts index 212b483f..73a6cfb3 100644 --- a/src/tools/markdown-to-html/index.ts +++ b/src/tools/markdown-to-html/index.ts @@ -2,11 +2,11 @@ import { Markdown } from '@vicons/tabler'; import { defineTool } from '../tool'; export const tool = defineTool({ - name: 'Markdown to Html', + 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-15'), + createdAt: new Date('2024-08-25'), });