git ignore:

This commit is contained in:
Simon Kellet
2026-03-07 16:31:25 +00:00
parent 6f3e0899bb
commit 1ffc88f530
21 changed files with 990 additions and 135 deletions
+1 -1
View File
@@ -19,6 +19,7 @@ main :: proc() {
for file, i in md_files {
os.change_directory(directory)
fmt.printfln("parsing %s to html...", file)
html, parse_err := parse_file_md_to_html(file, arena_alloc)
if parse_err != nil {
@@ -28,7 +29,6 @@ main :: proc() {
filename := strings.split(file, directory)
trimmed_filename := strings.trim_right(filename[1], ".md")
sb := strings.builder_make()
strings.write_string(&sb, fmt.aprintf("%v", trimmed_filename, allocator = arena_alloc))
strings.write_string(&sb, ".html")