summaryrefslogtreecommitdiff
path: root/html/languages/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'html/languages/default.nix')
-rw-r--r--html/languages/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/html/languages/default.nix b/html/languages/default.nix
index 36780db..f7c49f0 100644
--- a/html/languages/default.nix
+++ b/html/languages/default.nix
@@ -5,6 +5,9 @@ in {
title = "Languages";
priority = 40;
body = with html;
- lines (for languages
- (language: with language; "${icon} ${name} (${proficiency})"));
+ (for languages (language:
+ with language;
+ "${
+ lib.concatStrings (for icon.codepoints (codepoint: "&x${codepoint}"))
+ } ${name} (${proficiency})"));
}