diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-12-11 16:24:32 -0600 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-12-11 16:24:46 -0600 |
commit | 4e0fec0e0f1eec88ffe4297c396976beecb01af4 (patch) | |
tree | ade77d851b68668bdad0009b59c9c261a60353b7 /plugins | |
parent | d5a02a78f650689c8fe9e070233814cc5e428aec (diff) | |
download | my_new_personal_website-4e0fec0e0f1eec88ffe4297c396976beecb01af4.tar.xz my_new_personal_website-4e0fec0e0f1eec88ffe4297c396976beecb01af4.zip |
Added a space between author and site to be sure it looked good in feed readers and places where the site CSS wasn't being loaded
Diffstat (limited to '')
-rw-r--r-- | plugins/blockquote.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/blockquote.rb b/plugins/blockquote.rb index a0bf12cc..7fb8c261 100644 --- a/plugins/blockquote.rb +++ b/plugins/blockquote.rb @@ -60,9 +60,9 @@ module Jekyll source << '/…' unless source == @source end if !@source.nil? - cite = "<cite><a href='#{@source}'>#{(@title || source)}</a></cite>" + cite = " <cite><a href='#{@source}'>#{(@title || source)}</a></cite>" elsif !@title.nil? - cite = "<cite>#{@title}</cite>" + cite = " <cite>#{@title}</cite>" end blockquote = if @by.nil? quote |