From 4e0fec0e0f1eec88ffe4297c396976beecb01af4 Mon Sep 17 00:00:00 2001
From: Brandon Mathis <brandon@imathis.com>
Date: Sun, 11 Dec 2011 16:24:32 -0600
Subject: [PATCH] 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

---
 plugins/blockquote.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/blockquote.rb b/plugins/blockquote.rb
index a0bf12c..7fb8c26 100644
--- a/plugins/blockquote.rb
+++ b/plugins/blockquote.rb
@@ -60,9 +60,9 @@ module Jekyll
         source << '/&hellip;' 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