You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use this tool when you need to write complex C language strings.
18
16
19
17
```bash
20
-
cd src/recipe
21
-
22
-
# 尽管我们已经在 recipe 目录中了,但是 just 自己会重新切换到项目根目录,所以我们总是给一个相对根目录的路径
23
-
just rawstr4c ./src/recipe/ware
18
+
$ rawstr4c --help
24
19
```
25
20
26
21
<br>
@@ -29,20 +24,20 @@ just rawstr4c ./src/recipe/ware
29
24
30
25
## Convention
31
26
32
-
一个配置文件,应使用这样的顺序:
27
+
A configuration file should use this order:
33
28
34
-
- section 标题
35
-
- 对该变量的说明
36
-
- 配置块 configblock
37
-
- 配置块 configblock 注释
38
-
- 代码块 codeblock (raw string)
39
-
- 代码块 codeblock 内容的注释
29
+
1. section title
30
+
2. description of the variable
31
+
3. configuration block (configblock)
32
+
4. configuration block (configblock) comments
33
+
5. code block (codeblock) (raw string)
34
+
6. comments for the content of the code block (codeblock)
40
35
41
36
<br>
42
37
43
38
44
39
45
-
## 配置语法
40
+
## Configuration Syntax
46
41
47
42
```markdown
48
43
@@ -54,56 +49,56 @@ just rawstr4c ./src/recipe/ware
54
49
55
50
```
56
51
57
-
配置项总是以 `-` 开头,配置项名称后跟一个 `=`,右值必须使用 ``` `` ``` 来包裹
52
+
Configuration items always start with `-`, followed by the configuration item name and an `=`, and the right-hand value must be wrapped with ``` `` ```.
58
53
59
-
注意,如果值并非是由用户随意给出,则应该设置为 mode 类型,使用 `:`作为前缀
54
+
Note: if the value is not arbitrarily given by the user, it should be set as a mode type, using `:`as a prefix.
60
55
61
56
<br>
62
57
63
58
64
59
65
-
## 配置项
60
+
## Configuration Items
66
61
67
-
注意,如非特殊说明,第一项为默认值
62
+
Note: unless otherwise specified, the first item is the default value
0 commit comments