diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-02-27 19:00:34 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-02-27 19:00:34 +0000 |
commit | 108f385e675e474f3dfb581d801df55b5c3820a0 (patch) | |
tree | 5b0f9ac55d282ceac12505b12a3c6420be2c541e /src | |
parent | Switched to unicode characters + improved look and feel (diff) | |
download | miniserve-108f385e675e474f3dfb581d801df55b5c3820a0.tar.gz miniserve-108f385e675e474f3dfb581d801df55b5c3820a0.zip |
Actually use unicode characters
Diffstat (limited to 'src')
-rw-r--r-- | src/renderer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer.rs b/src/renderer.rs index 70e40a2..1253bec 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -80,12 +80,12 @@ fn build_link( /// Partial: chevron up fn chevron_up() -> Markup { - (PreEscaped("▴".to_string())) + (PreEscaped("▴".to_string())) } /// Partial: chevron up fn chevron_down() -> Markup { - (PreEscaped("▾".to_string())) + (PreEscaped("▾".to_string())) } /// Partial: page header |