Skip to content

Commit fb38708

Browse files
committed
rustdoc: fix diagnostic with mixed code block styles
1 parent ef54f57 commit fb38708

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

src/librustdoc/html/markdown.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,10 @@ crate fn rust_code_blocks(md: &str) -> Vec<RustCodeBlock> {
931931
is_fenced = true;
932932
previous_offset + fence_idx
933933
}
934-
None => offset,
934+
None => {
935+
is_fenced = false;
936+
offset
937+
}
935938
};
936939
}
937940
}

src/test/rustdoc-ui/invalid-syntax.rs

+8
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,11 @@ pub fn empty_rust() {}
7474
///
7575
/// ```
7676
pub fn empty_rust_with_whitespace() {}
77+
78+
/// ```
79+
/// let x = 1;
80+
/// ```
81+
///
82+
/// \____/
83+
///
84+
pub fn indent_after_fenced() {}

src/test/rustdoc-ui/invalid-syntax.stderr

+18
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,24 @@ help: mark blocks that do not contain Rust code as text
201201
LL | /// ```text
202202
| ^^^^^^^
203203

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+
204222
error: unknown start of token: \
205223
--> <rustdoc-highlighting>:1:1
206224
|

0 commit comments

Comments
 (0)