Split lang on tab to be consistent with rustdoc and GitHub.

This commit is contained in:
Eric Huss 2021-07-10 09:33:34 -07:00
parent cc74ca2e6e
commit fae0759626
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ fn clean_codeblock_headers(event: Event<'_>) -> Event<'_> {
let info: String = info let info: String = info
.chars() .chars()
.map(|x| match x { .map(|x| match x {
' ' => ',', ' ' | '\t' => ',',
_ => x, _ => x,
}) })
.filter(|ch| !ch.is_whitespace()) .filter(|ch| !ch.is_whitespace())