Skip to content

Commit

Permalink
add capital letters
Browse files Browse the repository at this point in the history
  • Loading branch information
Markos-Th09 committed Oct 26, 2023
1 parent 363e85d commit e89d672
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,30 @@ static GREEK_LETTERS: phf::Map<&'static str, &'static str> = phf_map! {
"\\chi" => "χ",
"\\psi" => "ψ",
"\\omega" => "ω",
"\\Alpha" => "Α",
"\\Beta" => "Β",
"\\Gamma" => "Γ",
"\\Delta" => "Δ",
"\\Epsilon" => "Ε",
"\\Zeta" => "Ζ",
"\\Eta" => "Η",
"\\Theta" => "Θ",
"\\Iota" => "Ι",
"\\Kappa" => "Κ",
"\\Lambda" => "Λ",
"\\Mu" => "Μ",
"\\Nu" => "Ν",
"\\Xi" => "Ξ",
"\\Omicron" => "Ο",
"\\Pi" => "Π",
"\\Rho" => "Ρ",
"\\Sigma" => "Σ",
"\\Tau" => "Τ",
"\\Upsilon" => "Υ",
"\\Phi" => "Φ",
"\\Chi" => "Χ",
"\\Psi" => "Ψ",
"\\Omega" => "Ω",
};

#[must_use]
Expand Down

0 comments on commit e89d672

Please sign in to comment.