Skip to content

Commit

Permalink
Split lang on tab to be consistent with rustdoc and GitHub.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jul 10, 2021
1 parent cc74ca2 commit fae0759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ fn clean_codeblock_headers(event: Event<'_>) -> Event<'_> {
let info: String = info
.chars()
.map(|x| match x {
' ' => ',',
' ' | '\t' => ',',
_ => x,
})
.filter(|ch| !ch.is_whitespace())
Expand Down

0 comments on commit fae0759

Please sign in to comment.