feat: add custom code tag to markdown
This commit is contained in:
@@ -1,18 +1,21 @@
|
||||
import { DocsStructure } from '@/app/types/types';
|
||||
|
||||
export const versionTwo: DocsStructure[] = [
|
||||
{
|
||||
title: 'Introduction',
|
||||
folder: 'introduction',
|
||||
copy: 'copy.md',
|
||||
example: 'example.md',
|
||||
children: [],
|
||||
},
|
||||
{
|
||||
title: 'Authentication',
|
||||
folder: 'authentication',
|
||||
copy: 'copy.md',
|
||||
example: 'example.md',
|
||||
children: [],
|
||||
},
|
||||
];
|
||||
export const versionTwo: DocsStructure = {
|
||||
version: 'version_002',
|
||||
docs: [
|
||||
{
|
||||
title: 'Introduction',
|
||||
folder: 'introduction',
|
||||
copy: 'copy.md',
|
||||
example: 'example.md',
|
||||
children: [],
|
||||
},
|
||||
{
|
||||
title: 'Authentication',
|
||||
folder: 'authentication',
|
||||
copy: 'copy.md',
|
||||
example: 'example.md',
|
||||
children: [],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user