fixed formatting

This commit is contained in:
Simon Kellet
2026-07-06 20:47:45 +01:00
parent 178815cefe
commit 10d383e4c2
3 changed files with 6 additions and 12 deletions
+2 -2
View File
@@ -45,9 +45,9 @@ generate_blog_md_file :: proc(path: string, allocator := context.allocator) {
for blog in blogs {
b := strings.split(blog, blog_dir, allocator)
trim_b := strings.trim_right(b[1], ".md")
if trim_b == "index" { continue } //Ignore Index
if trim_b == "index" {continue} //Ignore Index
if strings.starts_with(trim_b, "!") { continue } //Ignore WIP files!
if strings.starts_with(trim_b, "!") {continue} //Ignore WIP files!
append(&blog_list, blog)
}