Browse Source

Remove ignored 'u' parameter on regexp (#392)

closed-social-glitch-2
Rey Tucker 6 years ago
parent
commit
21b586436e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/lib/frontmatter_handler.rb

+ 1
- 1
app/lib/frontmatter_handler.rb View File

@ -10,7 +10,7 @@ class FrontmatterHandler
# CONVENIENCE FUNCTIONS #
def self.unirex(str)
Regexp.new str, Regexp::MULTILINE, 'u'
Regexp.new str, Regexp::MULTILINE
end
def self.rexstr(exp)
'(?:' + exp.source + ')'

Loading…
Cancel
Save