Compare commits

...

2 Commits

Author SHA1 Message Date
ecd53a6741 fix 2025-06-07 12:36:59 +01:00
4786a21a56 chore: removing log 2025-06-07 12:31:53 +01:00

View File

@ -2,7 +2,6 @@ package main
import (
"errors"
"fmt"
"os"
"path/filepath"
"slices"
@ -89,7 +88,6 @@ func getPostInfo(post string) (postInfo, error) {
case "title":
info.Title = splitLine[1]
case "date":
fmt.Println(splitLine[1])
t, err := time.Parse(time.DateOnly, splitLine[1][1:len(splitLine[1])-1])
if err != nil {
continue