I looked around and the only answer I found was pandoc (if anybody knows any programs with a ui that can do this in batches that would be great).
If not what I'd like to do is have two bat files in a directory, one to be able to convert all the files in a directory and any subdirectories from markdown to HTML, the other to convert back.
I just don't get how to get the "for in" recursive thing working in the command prompt (noob here). I got how to convert single files to and from with the examples from pandoc:
pandoc test.md -f markdown -t html -o test.html
or backwards:
pandoc test.html -f html -t markdown -o test.md
but I've yet to be able to do batches in either the command prompt or with a bat file. Googled it, got the few similar questions from here and I've tried to modify a few answers for me and still couldn't manage it.
If someone could give me the basic format it's supposed to be in, I'd really appreciate it.