File tree 4 files changed +219
-212
lines changed
4 files changed +219
-212
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ export default defineUserConfig({
65
65
mdEnhancePlugin ( {
66
66
gfm : true ,
67
67
container : true ,
68
- linkCheck : true ,
69
68
vPre : true ,
70
69
tabs : true ,
71
70
card : true ,
Original file line number Diff line number Diff line change @@ -48,6 +48,14 @@ EBNF 的语法规则由一系列规则组成,每个规则包含一个非终止
48
48
49
49
EBNF 还支持一些元素,如 ` | ` 表示或,可以用于在一个语法规则中定义多个可能的选择;` + ` 表示至少重复一次;` * ` 表示零次或多次重复。这些元素使 EBNF 更加灵活,可以描述更复杂的语法规则。
50
50
51
+ ``` ebnf
52
+ expression ::= term {("+" | "-") term}.
53
+ term ::= factor {("*" | "/") factor}.
54
+ factor ::= number | "(" expression ")".
55
+ number ::= digit {digit}.
56
+ digit ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9".
57
+ ```
58
+
51
59
EBNF 被广泛用于编程语言的设计和描述,它可以帮助程序员更容易地理解和实现语法规则。
52
60
53
61
| 符号 | 含义 |
Original file line number Diff line number Diff line change 24
24
"@vuepress/utils" : " 2.0.0-beta.61" ,
25
25
"vue" : " ^3.2.47" ,
26
26
"vuepress" : " 2.0.0-beta.61" ,
27
- "vuepress-plugin-auto-catalog" : " 2.0.0-beta.206 " ,
28
- "vuepress-plugin-copy-code2" : " 2.0.0-beta.206 " ,
29
- "vuepress-plugin-md-enhance" : " 2.0.0-beta.206 " ,
30
- "vuepress-plugin-search-pro" : " 2.0.0-beta.206 "
27
+ "vuepress-plugin-auto-catalog" : " 2.0.0-beta.207 " ,
28
+ "vuepress-plugin-copy-code2" : " 2.0.0-beta.207 " ,
29
+ "vuepress-plugin-md-enhance" : " 2.0.0-beta.207 " ,
30
+ "vuepress-plugin-search-pro" : " 2.0.0-beta.207 "
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments