How do I use the Markdown to HTML C function and statically compile?

I would like to use this library, and convert Markdown to HTML. Unfortunately, I couldn’t find documentation with easy examples. There was some “Make_manpages.py” thing I didn’t understand. I couldn’t use python to make the manpage. And there are a lot of source files, I don’t know which to include and where to put them. I also wanted to ask if I could load the markdown file (it’s a folder of blog entries) into a 2D array and get the markdown into the function from there directly or if it has to be a 1D (“normal”) array. So yeah, those are my questions: do I put the library source files into the same folder as my own written code? What do I put into the makefile? Can I get a simple example on how to use the function for converting one markdown 2D array into an HTML 2D array? Or would I have to use 1D arrays for input and output? What would I do to put the library into my binary statically? Is it possible?