mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Theme fix + remove trailing spaces when parsing rst files for tags.
This commit is contained in:
parent
c086539b4a
commit
2baf91a50d
3 changed files with 7 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -24,6 +24,10 @@
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
article img{
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Headings */
|
||||
h2 {font-size: 1.571em} /* 22px */
|
||||
h3 {font-size: 1.429em} /* 20px */
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue