about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/lib/frontmatter_handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/frontmatter_handler.rb b/app/lib/frontmatter_handler.rb
index a95a1e294..fa787630d 100644
--- a/app/lib/frontmatter_handler.rb
+++ b/app/lib/frontmatter_handler.rb
@@ -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 + ')'