File tree 3 files changed +30
-1
lines changed
3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -931,7 +931,10 @@ crate fn rust_code_blocks(md: &str) -> Vec<RustCodeBlock> {
931
931
is_fenced = true ;
932
932
previous_offset + fence_idx
933
933
}
934
- None => offset,
934
+ None => {
935
+ is_fenced = false ;
936
+ offset
937
+ }
935
938
} ;
936
939
}
937
940
}
Original file line number Diff line number Diff line change @@ -74,3 +74,11 @@ pub fn empty_rust() {}
74
74
///
75
75
/// ```
76
76
pub fn empty_rust_with_whitespace ( ) { }
77
+
78
+ /// ```
79
+ /// let x = 1;
80
+ /// ```
81
+ ///
82
+ /// \____/
83
+ ///
84
+ pub fn indent_after_fenced ( ) { }
Original file line number Diff line number Diff line change @@ -201,6 +201,24 @@ help: mark blocks that do not contain Rust code as text
201
201
LL | /// ```text
202
202
| ^^^^^^^
203
203
204
+ error: unknown start of token: \
205
+ --> <doctest>:1:1
206
+ |
207
+ 1 | \____/
208
+ | ^
209
+
210
+ warning: could not parse code block as Rust code
211
+ --> $DIR/invalid-syntax.rs:82:9
212
+ |
213
+ LL | /// \____/
214
+ | ^^^^^^
215
+
216
+ error: unknown start of token: \
217
+ --> <rustdoc-highlighting>:1:1
218
+ |
219
+ 1 | \____/
220
+ | ^
221
+
204
222
error: unknown start of token: \
205
223
--> <rustdoc-highlighting>:1:1
206
224
|
You can’t perform that action at this time.
0 commit comments