Merge pull request #307 from fujianbang/master

Fix bug where code blocks were not editable
This commit is contained in:
Sunface 2022-09-09 10:09:58 +08:00 committed by GitHub
commit f70fc371aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -3,8 +3,7 @@
## 位置参数
1.🌟🌟
```rust,edtiable
```rust,editable
/* 填空 */
fn main() {
println!("{0}, this is {1}. {1}, this is {0}", "Alice", "Bob");// => Alice, this is Bob. Bob, this is Alice
@ -180,4 +179,4 @@ fn main() {
// 转义
println!("Hello {{}}"); // => Hello {}
}
```
```