This commit is contained in:
2025-12-02 04:15:22 +01:00
parent 29ab30788e
commit 8c8369c42b
14 changed files with 169 additions and 248 deletions

View File

@@ -20,6 +20,7 @@ pub fn key_parse(key string) !(string, string) {
pub fn name_fix(name string) string {
mut result := name
// Remove .md extension if present for processing
result = result.replace('/', '_')
if result.ends_with('.md') {
result = result[0..result.len - 3]
}