def runDir()

in source/generate.py [0:0]


def runDir(path):
    files = os.listdir(path)
    for f in files:
        if os.path.isdir('%s/%s' % (path, f)):
            runDir('%s/%s/' % (path, f))
        elif f.find(".md") != -1:
            print("Processing %s" % f)
            input_file = codecs.open("%s/%s" % (path, f), mode="r", encoding="utf-8")
            outfile = f.replace(".md", ".html").lower().replace("//", "/")
            outfile = path.replace("markdown", "", 1) + outfile
            text = input_file.read()
            # convert sections enclosed in ~~~ to <pre> blocks
            text = re.sub(r"~~~([\s\S]+?)~~~", "<pre>\\1</pre>", text, flags=re.MULTILINE)
            # convert references to UPPERCASE.md files to lower-case.html
            # e.g. Refer to the [General installation documentation](INSTALLING.md)
            # =>   Refer to the [General installation documentation](installing.html)
            text = re.sub(r"([A-Z/]+)\.md", lambda x: x.group(1).lower() + ".html", text, flags =re.MULTILINE)
            html = markdown.markdown(text)
            # Convert h1-h6 into anchors with paragraph mark hover links
            html = re.sub(r"<h([1-6])>(.+?)</h[1-6]>", lambda x:
                "<h%s id='%s'>%s<a href='#%s' style='color: rgba(0,0,0,0);'>&para;</a></h%s>" % (
                x.group(1),
                re.sub(r"[^a-z0-9]+", "", x.group(2).lower()),
                x.group(2),
                re.sub(r"[^a-z0-9]+", "", x.group(2).lower()),
                x.group(1)
                       )
                          , html)
            # merge the transformed file with the template
            html = template.replace("%CONTENT%", html, 1)
            print("Writing %s..." % outfile)
            bpath = os.path.dirname(outfile)
            if not os.path.isdir("../content/" + bpath):
                print("Making dir %s" % bpath)
                os.mkdir("../content/%s" % bpath)
            with io.open('../content/%s' % outfile, "w", encoding='utf8') as out:
                out.write(html)
                out.close()