it-tools/src/tools/markdown-cheatsheet/index.ts
sharevb 5bcc503c56 feat(new tool): Markdown Cheatsheet
Markdown Cheatsheet
Fix #424 and part of #538
2024-04-07 23:40:53 +02:00

13 lines
381 B
TypeScript

import { Markdown } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Markdown Cheat Sheet',
path: '/markdown-cheatsheet',
description: 'Markdown Cheat Sheet',
keywords: ['markdown', 'cheatsheet', 'memo'],
component: () => import('./markdown-cheatsheet.vue'),
icon: Markdown,
createdAt: new Date('2024-03-09'),
});