feat: add custom code tag to markdown

This commit is contained in:
Stevan Freeborn
2023-04-09 14:50:50 -05:00
parent ae44fe7e07
commit 4c6257012d
12 changed files with 189 additions and 115 deletions
+12 -9
View File
@@ -1,11 +1,14 @@
import { DocsStructure } from '@/app/types/types';
export const versionOne: DocsStructure[] = [
{
title: 'Introduction',
folder: 'introduction',
copy: 'copy.md',
example: 'example.md',
children: [],
},
];
export const versionOne: DocsStructure = {
version: 'version_001',
docs: [
{
title: 'Introduction',
folder: 'introduction',
copy: 'copy.md',
example: 'example.md',
children: [],
},
],
};