aboutsummaryrefslogtreecommitdiff
path: root/plugins/include_code.rb
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2013-04-09 09:23:31 -0500
committerBrandon Mathis <brandon@imathis.com>2013-04-09 09:23:31 -0500
commitafca876bd46f13002119c6a342ff75c4db28ac0b (patch)
tree0e6a98838fdd813f08878598c2155876ce9e6a9d /plugins/include_code.rb
parent3ab22cb8209687f9a77b22c896e16c23a00f3845 (diff)
downloadmy_new_personal_website-afca876bd46f13002119c6a342ff75c4db28ac0b.tar.xz
my_new_personal_website-afca876bd46f13002119c6a342ff75c4db28ac0b.zip
Accepting all non-whitespace characters as language names for Pygments code highlighting
Diffstat (limited to 'plugins/include_code.rb')
-rw-r--r--plugins/include_code.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/include_code.rb b/plugins/include_code.rb
index 1ee3223f..220466b6 100644
--- a/plugins/include_code.rb
+++ b/plugins/include_code.rb
@@ -32,9 +32,9 @@ module Jekyll
def initialize(tag_name, markup, tokens)
@title = nil
@file = nil
- if markup.strip =~ /\s*lang:([\w-]+)/i
+ if markup.strip =~ /\s*lang:(\S+)/i
@filetype = $1
- markup = markup.strip.sub(/\s*lang:([\w-]+)/i,'')
+ markup = markup.strip.sub(/lang:\S+/i,'')
end
if markup.strip =~ /(.*)?(\s+|^)(\/*\S+)/i
@title = $1 || nil