Theme fix + remove trailing spaces when parsing rst files for tags.

This commit is contained in:
Alexis Metaireau 2010-10-17 04:21:00 +01:00
commit 2baf91a50d
3 changed files with 7 additions and 3 deletions

View file

@ -224,7 +224,7 @@ def read_settings(filename):
context[key] = tempdict[key]
return context
_METADATA = re.compile(':([a-z]+): (.*)', re.M)
_METADATA = re.compile(':([a-z]+): (.*)\s', re.M)
_METADATAS_FIELDS = {'tags': lambda x: x.split(', '),
'date': lambda x: get_date(x),
'category': lambda x: x,
@ -242,7 +242,7 @@ def get_date(string):
return datetime.strptime(string, date_format)
except ValueError:
pass
raise ValueError("%s is not a valid date" % string)
raise ValueError("'%s' is not a valid date" % string)
def parse_metadata(string):
"""Return a dict, containing a list of metadata informations, found

View file

@ -24,6 +24,10 @@
text-align: left;
}
article img{
float: right;
}
/* Headings */
h2 {font-size: 1.571em} /* 22px */
h3 {font-size: 1.429em} /* 20px */

View file

@ -7,7 +7,7 @@ if sys.version_info < (2,7):
setup(
name = "pelican",
version = '1.2.2',
version = '1.2.3',
url = 'http://hg.lolnet.org/pelican/',
author = 'Alexis Metaireau',
author_email = 'alexis@notmyidea.org',