From 313b0bdd09cfb9c10adb58fb9861f1ae9e7ae50e Mon Sep 17 00:00:00 2001
From: tri <tri@thac.loan>
Date: Mon, 29 Sep 2025 13:06:50 +0700
Subject: [PATCH] replace - with _

It's less aesthetic but won't accidentally confuse CLI programs.
---
 src/main.zig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main.zig b/src/main.zig
index dedef28..f92340d 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -5,8 +5,8 @@ const println = @import("utils.zig").println;
 const git = @import("git.zig");
 const html = @import("html.zig");
 
-const web_path = "-";
-const assets_path = web_path ++ "/-khoe-hang";
+const web_path = "_";
+const assets_path = web_path ++ "/_khoe-hang";
 
 pub fn main() !u8 {
     if (std.os.argv.len != 3) {
@@ -141,8 +141,8 @@ pub fn writeHomePage(dir: fs.Dir, repos: []RepoSummary) !void {
         \\    <meta charset="utf-8" />
         \\    <title>Khoe</title>
         \\    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-        \\    <link rel="stylesheet" href="/-/-khoe-hang/style.css">
-        \\    <script src="/-/-khoe-hang/script.js"></script>
+        \\    <link rel="stylesheet" href="/_/_khoe-hang/style.css">
+        \\    <script src="/_/_khoe-hang/script.js"></script>
         \\  </head>
         \\  <body>
         \\    <header>
@@ -237,8 +237,8 @@ pub fn writeRepoPage(args: RepoArgs) !void {
         \\    <meta charset="utf-8" />
         \\    <title>{0s} | Khoe</title>
         \\    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-        \\    <link rel="stylesheet" href="/-/-khoe-hang/style.css">
-        \\    <script src="/-/-khoe-hang/script.js"></script>
+        \\    <link rel="stylesheet" href="/_/_khoe-hang/style.css">
+        \\    <script src="/_/_khoe-hang/script.js"></script>
         \\  </head>
         \\  <body>
         \\    <header>
-- 
2.47.3

