up vote 7 down vote favorite
2
share [g+] share [fb]

I'm writing some documentation in Markdown, and creating a separate file for each section of the doc. I would like to be able to convert all the files to HTML in one go, but I can't find anyone else who has tried the same thing. I'm on a Mac, so I would think a simple bash script should be able to handle it, but I've never done anything in bash and haven't had any luck. It seems like it should be simple to write something so I could just run:

markdown-batch ./*.markdown

Any ideas?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

This is how you would do it in Bash.

for i in ./*.markdown; do perl markdown.pl --html4tags $i > $i.html; done;

Of course, you need the Markdown script.

link|improve this answer
feedback

Use pandoc It's a commandline tool that lets you convert from one format to another. This tool supports Markdown to html and back.

link|improve this answer
1  
+1 for pandoc... since he's writing it in sections, use pandoc to concatenate the necessary sections into one html file, if necessary. – Mica Sep 19 '09 at 0:31
feedback

I use this in a .bat file:

@echo off
for %i in (*.txt) python markdown.py "%i"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.