Initial commit of akmon project

This commit is contained in:
2026-01-20 08:04:15 +08:00
commit 77a2bab985
1309 changed files with 343305 additions and 0 deletions

21
test_new_charts.md Normal file
View File

@@ -0,0 +1,21 @@
# Test New Mermaid Charts
## Radar Chart
```mermaid
radar-beta
title Tech Skills
x-axis [HTML, CSS, JS, React, Node, Python]
y-axis 0 --> 100
Tech 1: [80, 90, 85, 95, 88, 92]
Tech 2: [70, 75, 80, 85, 78, 82]
```
## XY Chart with Line
```mermaid
xychart-beta
title ""Sales Revenue""
x-axis [jan, feb, mar, apr, may, jun]
y-axis ""Revenue (in $)"" 0 --> 100
bar [5, 6, 7, 8, 9, 10]
line [2, 3, 4, 5, 6, 7]
```