Browse Source

Striped whitespace from titles in blockquote plugin

unreleased_contents
Brandon Mathis 12 years ago
parent
commit
cd6926e41b
  1. 4
      plugins/blockquote.rb

4
plugins/blockquote.rb

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

Loading…
Cancel
Save