diff options
author | B Strand <jet.strand@gmail.com> | 2011-10-12 13:25:51 -0700 |
---|---|---|
committer | B Strand <jet.strand@gmail.com> | 2011-10-12 13:25:51 -0700 |
commit | f6fb11a37571b48844c488bc351dd78747ee99bd (patch) | |
tree | 65a60b966d6ba6aacead2d6342cb63903069bfbd /plugins | |
parent | 490b2593ec8e912b042f49966a80c37f0026e0d9 (diff) | |
download | my_new_personal_website-f6fb11a37571b48844c488bc351dd78747ee99bd.tar.xz my_new_personal_website-f6fb11a37571b48844c488bc351dd78747ee99bd.zip |
Added class='citation' to blockquotes generated by the blockquote plugin to differentiate their style from the style of an html or markdown blockquote.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/blockquote.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/blockquote.rb b/plugins/blockquote.rb index a0bf12cc..f4f57da3 100644 --- a/plugins/blockquote.rb +++ b/plugins/blockquote.rb @@ -71,7 +71,7 @@ module Jekyll else "#{quote}<footer>#{author}</footer>" end - "<blockquote>#{blockquote}</blockquote>" + "<blockquote class='citation'>#{blockquote}</blockquote>" end def paragraphize(input) |