Fixed Regexp.new syntax
This commit is contained in:
parent
7b1d233f4f
commit
6cbbdc805f
|
@ -10,7 +10,7 @@ class FrontmatterHandler
|
||||||
# CONVENIENCE FUNCTIONS #
|
# CONVENIENCE FUNCTIONS #
|
||||||
|
|
||||||
def self.unirex(str)
|
def self.unirex(str)
|
||||||
Regexp.new str, false, 'um'
|
Regexp.new str, Regexp::MULTILINE, 'u'
|
||||||
end
|
end
|
||||||
def self.rexstr(exp)
|
def self.rexstr(exp)
|
||||||
'(?:' + exp.source + ')'
|
'(?:' + exp.source + ')'
|
||||||
|
|
Loading…
Reference in New Issue