-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpelicanconf.py
33 lines (24 loc) · 971 Bytes
/
pelicanconf.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
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = u'Leo team'
SITENAME = u'Leo Blog'
#SITEURL = 'http://leo-editor.github.io'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = u'en'
FEED_DOMAIN = 'http://leo-editor.github.io/blog'
SITEURL = 'http://leo-editor.github.io/blog'
# Blogroll
LINKS = (('Leo project website', 'http://leoeditor.com/'),
('Leo community mailing list', 'https://groups.google.com/forum/?fromgroups#!forum/leo-editor'),
# ('Jinja2', 'http://jinja.pocoo.org'),
# ('You can modify those links in your config file', '#'),)
)
# Social widget
#SOCIAL = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
STATIC_PATHS = ['images',]
DEFAULT_PAGINATION = 10
# markdown config, see options at:
# http://docs.getpelican.com/en/3.3.0/settings.html
# http://pythonhosted.org/Markdown/extensions/
MD_EXTENSIONS = (['codehilite(css_class=highlight)','extra', 'nl2br', 'sane_lists'])