Skip to content

Commit

Permalink
Fix mathbb2 electric boogaloo
Browse files Browse the repository at this point in the history
  • Loading branch information
if-loop69420 committed Oct 7, 2024
1 parent 1135642 commit 51aee73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deck_generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn replace_math(input: String) -> String {
} else if let Some(content) = caps.name("content_single") {
format!("\\\\( {} \\\\)", content.as_str())
} else if let Some(content) = caps.name("symbol") {
format!("\\\\mathbb{{{}}}", content.as_str())
format!("\\\\mathbb{{ {} }}", content.as_str())
} else {
unreachable!()
}
Expand Down

0 comments on commit 51aee73

Please sign in to comment.