This commit is contained in:
Hazel Noack 2025-05-28 16:14:31 +02:00
parent a4aa73b1aa
commit e1fd352b1f
2 changed files with 9 additions and 1 deletions

View File

@ -18,7 +18,12 @@ logger = logging.getLogger("stsg")
def build(): def build():
complete_build() build_wiki()
# complete_build()
def build_wiki():
pass
class MarkdownChangeHandler(FileSystemEventHandler): class MarkdownChangeHandler(FileSystemEventHandler):

View File

@ -277,6 +277,9 @@ class ArticleTranslation:
with Path(self.dist_path, "index.html").open("w") as f: with Path(self.dist_path, "index.html").open("w") as f:
f.write(TEMPLATE["article_translation"].render(self.context)) f.write(TEMPLATE["article_translation"].render(self.context))
def build_wiki(self, language_code: str):
pass
class Article: class Article:
directory: Path directory: Path