diff --git a/parse.odin b/parse.odin index 9324b3d..e952b30 100644 --- a/parse.odin +++ b/parse.odin @@ -12,6 +12,12 @@ CSS_PREFIX :: "
\n" MASTODON_PREFIX :: "\n" +write_prefixs_to_html_file :: proc(file: ^os.File) { + os.write_string(file, UTF8_PREFIX) + os.write_string(file, CSS_PREFIX) + os.write_string(file, MASTODON_PREFIX) +} + walk_tree_and_get_md_names :: proc( path: string, allocator := context.allocator,