diff options
author | Brandon Mathis <brandon@imathis.com> | 2012-12-26 17:18:29 -0600 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2012-12-26 17:19:50 -0600 |
commit | c18de558759dff2c77e6e0fc3ce2ad7a9f3fea99 (patch) | |
tree | 13c76150e66ec5ec553e109a9d0f6be0f15d060a /plugins/code_block.rb | |
parent | 48d3e75ff5d3468369ca8104379b870f7cf600b1 (diff) | |
download | my_new_personal_website-c18de558759dff2c77e6e0fc3ce2ad7a9f3fea99.tar.xz my_new_personal_website-c18de558759dff2c77e6e0fc3ce2ad7a9f3fea99.zip |
Titles in code plugins can have slashes in them. Closes #892
Diffstat (limited to 'plugins/code_block.rb')
-rw-r--r-- | plugins/code_block.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/code_block.rb b/plugins/code_block.rb index 44e34945..62c551a4 100644 --- a/plugins/code_block.rb +++ b/plugins/code_block.rb @@ -49,8 +49,8 @@ module Jekyll class CodeBlock < Liquid::Block include HighlightCode include TemplateWrapper - CaptionUrlTitle = /(\S[\S\s]*)\s+(https?:\/\/)(\S+)\s+(.+)/i - CaptionUrl = /(\S[\S\s]*)\s+(https?:\/\/)(\S+)/i + CaptionUrlTitle = /(\S[\S\s]*)\s+(https?:\/\/\S+|\/\S+)\s*(.+)?/i + CaptionUrl = /(\S[\S\s]*)\s+(https?:\/\/\S+|\/\S+)/i Caption = /(\S[\S\s]*)/ def initialize(tag_name, markup, tokens) @title = nil @@ -63,10 +63,10 @@ module Jekyll end if markup =~ CaptionUrlTitle @file = $1 - @caption = "<figcaption><span>#{$1}</span><a href='#{$2 + $3}'>#{$4}</a></figcaption>" + @caption = "<figcaption><span>#{$1}</span><a href='#{$2}'>#{$3}</a></figcaption>" elsif markup =~ CaptionUrl @file = $1 - @caption = "<figcaption><span>#{$1}</span><a href='#{$2 + $3}'>link</a></figcaption>" + @caption = "<figcaption><span>#{$1}</span><a href='#{$2}'>link</a></figcaption>" elsif markup =~ Caption @file = $1 @caption = "<figcaption><span>#{$1}</span></figcaption>\n" |