- Clean up a ton of documentation.
- Make the modules import nicely.
- Add a cool logo to the command line tool
- Make the command-line tool use tqdm
- Make the command line tool load the metadata before processing the
files in a separate loop.
- Fix error handling in the command-line tool processing loops so they
work correctly (and jinja errors are more useful)
- Make command-line tool exit non-zero if there were errors.
- Fix load metadata to handle formats and errors better (and return {}
if it fails)
15 lines
333 B
Python
15 lines
333 B
Python
"""
|
|
HeckWeasel: Metadata based static site compiler.
|
|
"""
|
|
__version__ = '0.7.1'
|
|
__copyright__ = "©2023-2024 Aldercone Studio Collective"
|
|
|
|
from . import metadata
|
|
from . import processors
|
|
from . import __main__
|
|
from . import processchain
|
|
from . import processors
|
|
from . import template_tools
|
|
from . import pygments
|
|
from . import utils
|