-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoc.json
More file actions
86 lines (86 loc) · 1.93 KB
/
toc.json
File metadata and controls
86 lines (86 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"ru": {
"blocks": [
{
"id": "intro",
"title": "Введение в Go",
"number": 1,
"flat": true,
"topics": [
{
"slug": "what-is-go",
"title": "Что такое Go",
"number": "1.1"
},
{
"slug": "ide-setup",
"title": "Редактор кода",
"number": "1.2"
},
{
"slug": "installation",
"title": "Установка Go",
"number": "1.3"
},
{
"slug": "hello-world",
"title": "Hello World",
"number": "1.4"
},
{
"slug": "program-structure",
"title": "Структура программы",
"number": "1.5"
},
{
"slug": "compile-and-run",
"title": "Компиляция и запуск",
"number": "1.6"
}
]
}
]
},
"en": {
"blocks": [
{
"id": "intro",
"title": "Introduction to Go",
"number": 1,
"flat": true,
"topics": [
{
"slug": "what-is-go",
"title": "What is Go?",
"number": "1.1"
},
{
"slug": "ide-setup",
"title": "Code Editor",
"number": "1.2"
},
{
"slug": "installation",
"title": "Installing Go",
"number": "1.3"
},
{
"slug": "hello-world",
"title": "Hello World",
"number": "1.4"
},
{
"slug": "program-structure",
"title": "Program Structure",
"number": "1.5"
},
{
"slug": "compile-and-run",
"title": "Compile and Run",
"number": "1.6"
}
]
}
]
}
}