Fixed escaping in files generated from quickstart

Variables are properly escaped before they are replaced in the
templates.
This commit is contained in:
Remi Rampin 2012-09-17 22:36:35 -04:00 committed by Alexis Métaireau
commit 7d1c362635
2 changed files with 14 additions and 6 deletions

View file

@ -1,13 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = u"$author"
SITENAME = u"$sitename"
AUTHOR = $author
SITENAME = $sitename
SITEURL = ''
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = '$lang'
DEFAULT_LANG = $lang
# Blogroll
LINKS = (('Pelican', 'http://docs.notmyidea.org/alexis/pelican/'),