mirror of
https://github.com/jeremysrand/md2teach.git
synced 2024-12-10 22:50:40 +00:00
51f8ff5574
My plan is to go forward with just a shell command which is focused only on markdown to Teach file conversion, intended to be used in my build engine under Golden Gate.
19 lines
312 B
C
19 lines
312 B
C
/*
|
|
* translate.h
|
|
* md2teach
|
|
*
|
|
* Created by Jeremy Rand on 2021-04-24.
|
|
*
|
|
*/
|
|
|
|
#ifndef _GUARD_PROJECTmd2teach_FILEtranslate_
|
|
#define _GUARD_PROJECTmd2teach_FILEtranslate_
|
|
|
|
#include "md4c.h"
|
|
|
|
|
|
extern int parse(const MD_CHAR* text, MD_SIZE size);
|
|
|
|
|
|
#endif /* define _GUARD_PROJECTmd2teach_FILEtranslate_ */
|