diff options
-rwxr-xr-x | generate.py | 1 | ||||
-rw-r--r-- | templates/index.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/generate.py b/generate.py index 6328a9d..956e842 100755 --- a/generate.py +++ b/generate.py @@ -118,6 +118,7 @@ def main(argv=['generate.py']): env = Environment(loader=FileSystemLoader('./templates'), autoescape=True) env.globals['site'] = {'baseurl': baseurl} env.filters['datefmt'] = lambda d, f='%Y-%m-%d': d.strftime(f) + env.filters['md'] = md posts = glob(os.path.join(CONTENT, 'posts', '*')) posts = [p for p in posts if not os.path.split(p)[1].startswith('_')] diff --git a/templates/index.html b/templates/index.html index c32a7fb..6a64d79 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,7 +11,7 @@ <header> <h3>{{ post.title }}</h3> </header> - {{ post.pre }} + {{ post.pre|md }} <a href="/{{ post.location }}">Read more...</a> <footer> <time>{{ post.date|datefmt }}</time> |