Metadata-Version: 2.1
Name: sg.py
Version: 1.1.0
Summary: Simple static site generator.
Home-page: https://github.com/venthur/sg
Author: Bastian Venthur
Author-email: mail@venthur.de
License: MIT
Description: # sg.py -- a small static site generator
        
        Populate directory with markdown files (they have to end with
        .markdown). You can also create arbitrarily nested subdirectories
        containing .markdown files.
        
        Sg will go recursively through all directories not beginning with an
        underscore ("_") and convert the .markdown files into .html. The
        resulting HTML files will be saved into the _site directory, conserving
        the directory structure where the .markdown file was found.
        
        Put your static content into _static. Files and subdirectories will be
        copied into _site without any modifications.
        
        ## TODO
        
        * document the YAML frontmatter
        * enable layout selection by _layout_foo or so
        
Keywords: markdown site generator cli
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown
Provides-Extra: dev
