-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyblog.py
28 lines (21 loc) · 824 Bytes
/
pyblog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/local/bin/python
###############################################################################
# 'pyblog.py'
#
# About: A very basic static site generator written in Python. Site data is
# stored in plain-text files in a single folder (support for archives (tar,
# zip, xz, bz2, etc...) will be added at a later date). Support a subset of
# markdown via the 'md2html' python library.
#
# Version: 0.01
# Author: Kevin Kelley [[email protected]] (http://thesta.in)
# License: WTFPL
###############################################################################
# Configuration
import glob
import md2html
###############################################################################
# Code
def main(configuration=None):
###############################################################################
# End