From 089af26b02dbdce0c960aa544bd8b803d69d4e5f Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Sun, 21 Aug 2011 10:31:14 -0400 Subject: improved lang:language for codeblock and include code. It no longer strips out surrounding whitespace. --- plugins/include_code.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/include_code.rb') diff --git a/plugins/include_code.rb b/plugins/include_code.rb index 046f6245..5529f322 100644 --- a/plugins/include_code.rb +++ b/plugins/include_code.rb @@ -30,9 +30,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:(\w+)/i @filetype = $1 - markup = markup.strip.sub(/\s+lang:\w+\s*/i,'') + markup = markup.strip.sub(/lang:\w+/i,'') end if markup.strip =~ /(.*)?(\s+|^)(\/*\S+)/i @title = $1 || nil -- cgit v1.2.1