mirror of https://gitlab.com/octtspacc/staticoso
25 lines
895 B
Python
25 lines
895 B
Python
""" ================================= |
|
|
| This file is part of |
|
|
| staticoso |
|
|
| Just a simple Static Site Generator |
|
|
| |
|
|
| Licensed under the AGPLv3 license |
|
|
| Copyright (C) 2022, OctoSpacc |
|
|
| ================================= """
|
|
|
|
# TODO: Write a native Pug parser; There is one already available for Python but seems broken / out-of-date
|
|
|
|
import os
|
|
from Modules.Utils import *
|
|
|
|
def PugCompileList(OutputDir, Pages, LimitFiles):
|
|
# Pug-cli seems to shit itself with folder paths as input, so we pass ALL the files as arguments
|
|
Paths = ''
|
|
for File, Content, Titles, Meta in Pages:
|
|
if File.lower().endswith('.pug') and (LimitFiles == False or File in LimitFiles):
|
|
Path = f'{OutputDir}/{File}'
|
|
WriteFile(Path, Content)
|
|
Paths += f'"{Path}" '
|
|
if Paths:
|
|
os.system(f'pug -P {Paths} > /dev/null')
|