mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
improved lang:language for codeblock and include code. It no longer strips out surrounding whitespace.
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user