boredos_mirror/src/kernel/markdown.h
Chris d9fc8fbeda Update 1.03
New feature(s):
- Markdown reader (Automatically opens when opening .MD files, right click a .MD file to edit.
Bug fixes:
-N/A
2026-02-05 20:02:20 +01:00

11 lines
166 B
C

#ifndef MARKDOWN_H
#define MARKDOWN_H
#include "wm.h"
extern Window win_markdown;
void markdown_init(void);
void markdown_open_file(const char *filename);
#endif