Skip to content

Commit fae0759

Browse files
committed
Split lang on tab to be consistent with rustdoc and GitHub.
1 parent cc74ca2 commit fae0759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ fn clean_codeblock_headers(event: Event<'_>) -> Event<'_> {
231231
let info: String = info
232232
.chars()
233233
.map(|x| match x {
234-
' ' => ',',
234+
' ' | '\t' => ',',
235235
_ => x,
236236
})
237237
.filter(|ch| !ch.is_whitespace())

0 commit comments

Comments
 (0)