aboutsummaryrefslogtreecommitdiff
path: root/plugins/blockquote.rb
diff options
context:
space:
mode:
authorLeonardo Saraiva <vyper@maneh.org>2013-02-24 20:51:31 -0300
committerLeonardo Saraiva <vyper@maneh.org>2013-02-24 20:51:31 -0300
commit2fe9da91f5a4b5ba3edaee47ee24dbce523e739e (patch)
treecca3792ae030b550015633b4b855451fa8455bc3 /plugins/blockquote.rb
parente1020ed888439a480cb13af2585f9fea5283c609 (diff)
parent4790b939807be4d9abcc567f02773ff24b99320d (diff)
downloadmy_new_personal_website-2fe9da91f5a4b5ba3edaee47ee24dbce523e739e.tar.xz
my_new_personal_website-2fe9da91f5a4b5ba3edaee47ee24dbce523e739e.zip
Merge branch 'master' of github.com:imathis/octopress
Conflicts: plugins/category_generator.rb
Diffstat (limited to '')
-rw-r--r--plugins/blockquote.rb13
1 files changed, 6 insertions, 7 deletions
diff --git a/plugins/blockquote.rb b/plugins/blockquote.rb
index 62e7d143..ebdc0e89 100644
--- a/plugins/blockquote.rb
+++ b/plugins/blockquote.rb
@@ -21,6 +21,7 @@ module Jekyll
class Blockquote < Liquid::Block
FullCiteWithTitle = /(\S.*)\s+(https?:\/\/)(\S+)\s+(.+)/i
FullCite = /(\S.*)\s+(https?:\/\/)(\S+)/i
+ AuthorTitle = /([^,]+),([^,]+)/
Author = /(.+)/
def initialize(tag_name, markup, tokens)
@@ -30,17 +31,15 @@ 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.strip
elsif markup =~ Author
- if $1 =~ /([^,]+),([^,]+)/
- @by = $1
- @title = $2.titlecase
- else
- @by = $1
- end
+ @by = $1
end
super
end