actually downcase lexer
This commit is contained in:
parent
d5f137bc86
commit
844cc615e4
|
@ -13,8 +13,8 @@ module Jekyll
|
||||||
|
|
||||||
def initialize(tag_name, markup, tokens)
|
def initialize(tag_name, markup, tokens)
|
||||||
super
|
super
|
||||||
if markup.downcase.strip =~ SYNTAX
|
if markup.strip =~ SYNTAX
|
||||||
@lang = $1
|
@lang = $1.downcase
|
||||||
@options = {}
|
@options = {}
|
||||||
if defined?($2) && $2 != ''
|
if defined?($2) && $2 != ''
|
||||||
$2.split.each do |opt|
|
$2.split.each do |opt|
|
||||||
|
|
Loading…
Reference in New Issue