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
-22
View File
@@ -69,28 +69,6 @@ walk_tree :: proc(path: string) -> []u8 {
return nil
}
/*
parse_file_md_to_html :: proc(
filename: string,
allocator: runtime.Allocator,
) -> (
parsed: cstring,
err: os.Error,
) {
str: []u8
str = os.read_entire_file_from_path(filename, allocator) or_return
root := cm.parse_document(raw_data(str), len(str), cm.DEFAULT_OPTIONS)
defer cm.node_free(root)
html := cm.render_html(root, cm.DEFAULT_OPTIONS)
defer cm.free(html)
return html, nil
}
*/
parse_file_md_to_html :: proc(
filename: string,
allocator: runtime.Allocator,