math.yaml
1.11 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
---
# ----------------------------------------------------------------------------
# optional values applied to each topic, if undefined there
# ----------------------------------------------------------------------------
# defaults:
# file: questions.yaml
# shuffle_questions: true
# choose: 6
# max_tries: 2
# forgetting_factor: 0.97
# min_level: 0.01
# append_wrong: true
# ----------------------------------------------------------------------------
# topics and their dependencies
# ----------------------------------------------------------------------------
topics:
math/addition:
name: Adição
math/multiplication:
name: Multiplicação
deps:
- math/addition
math/learn-prime-numbers:
name: O que são números primos?
type: learn
file: learn.yaml
deps:
- math/multiplication
math/prime-numbers:
name: Números primos
deps:
- math/learn-prime-numbers
math:
name: Números e operações aritméticas
type: chapter
deps:
- math/addition
- math/multiplication
- math/learn-prime-numbers
- math/prime-numbers