mirror of
https://github.com/wez/wezterm.git
synced 2024-11-24 07:46:59 +03:00
13 lines
302 B
Rust
13 lines
302 B
Rust
//! This is used to generate a table in the wezterm docs
|
|
|
|
fn main() {
|
|
println!("| | |");
|
|
println!("|-|-|");
|
|
for &(label, c) in termwiz::nerdfonts::NERD_FONT_GLYPHS {
|
|
println!(
|
|
"|<span class=\"nf big\">&#x{:x};</span>|{}|",
|
|
c as u32, label
|
|
);
|
|
}
|
|
}
|