socializer/doc/generator.py

42 lines
1.2 KiB
Python
Raw Normal View History

2016-06-06 09:41:42 +02:00
# -*- coding: utf-8 -*-
import markdown
import os
from codecs import open as _open
import languageHandler
languageHandler.setLanguage("en")
2016-06-29 20:15:12 +02:00
import documentation_importer
2016-06-06 09:41:42 +02:00
# the list of supported language codes of TW Blue
languages = ["en", "es"]
2016-06-06 09:41:42 +02:00
def generate_document(language):
2016-06-29 20:15:12 +02:00
import strings
2016-06-06 09:41:42 +02:00
reload(languageHandler)
languageHandler.setLanguage(language)
reload(strings)
markdown_file = markdown.markdown("\n".join(strings.documentation[1:]), extensions=["markdown.extensions.toc"])
first_html_block = """<!doctype html>
<html lang="%s">
<head>
<title>%s</title>
<meta charset="utf-8">
</head>
<body>
<header><h1>%s</h1></header>
""" % (language, strings.documentation[0], strings.documentation[0])
first_html_block = first_html_block+ markdown_file
first_html_block = first_html_block + "\n</body>\n</html>"
if not os.path.exists(language):
os.mkdir(language)
mdfile = _open("%s/manual.html" % language, "w", encoding="utf-8")
mdfile.write(first_html_block)
mdfile.close()
def create_documentation():
print("Creating documentation in the supported languages...\n")
for i in languages:
print("Creating documentation for: %s" % (i,))
generate_document(i)
print("Done")
create_documentation()