Striped whitespace from titles in blockquote plugin

This commit is contained in:
Brandon Mathis 2013-01-12 16:36:15 -06:00
parent d686105bda
commit cd6926e41b
1 changed files with 2 additions and 2 deletions

View File

@ -31,13 +31,13 @@ module Jekyll
if markup =~ FullCiteWithTitle
@by = $1
@source = $2 + $3
@title = $4.titlecase
@title = $4.titlecase.strip
elsif markup =~ FullCite
@by = $1
@source = $2 + $3
elsif markup =~ AuthorTitle
@by = $1
@title = $2.titlecase
@title = $2.titlecase.strip
elsif markup =~ Author
@by = $1
end