mirror of
https://github.com/jekyll/jekyll.git
synced 2026-04-06 03:01:43 -04:00
actually downcase lexer
This commit is contained in:
@@ -13,8 +13,8 @@ module Jekyll
|
||||
|
||||
def initialize(tag_name, markup, tokens)
|
||||
super
|
||||
if markup.downcase.strip =~ SYNTAX
|
||||
@lang = $1
|
||||
if markup.strip =~ SYNTAX
|
||||
@lang = $1.downcase
|
||||
@options = {}
|
||||
if defined?($2) && $2 != ''
|
||||
$2.split.each do |opt|
|
||||
|
||||
Reference in New Issue
Block a user