Skip to content

Commit aa51b41

Browse files
committed
Refactor code structure for improved readability and maintainability
1 parent 3b6cbf7 commit aa51b41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1579
-7359
lines changed

.vitepress/config.mjs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { defineConfig } from 'vitepress'
2+
import { withMermaid } from 'vitepress-plugin-mermaid'
23

34
// https://vitepress.dev/reference/site-config
4-
export default defineConfig({
5+
export default withMermaid(defineConfig({
56
title: "Lesson Plan",
67
description: "Tổng Hợp Tài Liệu Học Lập Trình - By klpod221",
78
lang: 'vi-VN',
@@ -23,6 +24,11 @@ export default defineConfig({
2324
'assembly': 'asm'
2425
}
2526
},
27+
28+
// Mermaid configuration
29+
mermaid: {
30+
// Optional: Mermaid configuration options
31+
},
2632

2733
head: [
2834
['link', { rel: 'icon', href: '/lesson-plan/favicon.ico' }],
@@ -524,4 +530,4 @@ export default defineConfig({
524530
lightModeSwitchTitle: 'Chuyển sang chế độ sáng',
525531
darkModeSwitchTitle: 'Chuyển sang chế độ tối'
526532
}
527-
})
533+
}))

examples/c-cpp/01_c_basics.c

Lines changed: 0 additions & 111 deletions
This file was deleted.

examples/c-cpp/02_c_pointers.c

Lines changed: 0 additions & 134 deletions
This file was deleted.

examples/c-cpp/03_c_structs.c

Lines changed: 0 additions & 118 deletions
This file was deleted.

0 commit comments

Comments
 (0)