mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
26 lines
726 B
Ruby
26 lines
726 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
class Unicode
|
|
# Regular expression for identifying bidirectional control
|
|
# characters in UTF-8 strings
|
|
#
|
|
# Documentation on how this works:
|
|
# https://idiosyncratic-ruby.com/41-proper-unicoding.html
|
|
BIDI_REGEXP = /\p{Bidi Control}/
|
|
|
|
# Regular expression for identifying space characters
|
|
#
|
|
# In web browsers space characters can be confused with simple
|
|
# spaces which may be misleading
|
|
SPACE_REGEXP = /\p{Space_Separator}/
|
|
|
|
class << self
|
|
# Warning message used to highlight bidi characters in the GUI
|
|
def bidi_warning
|
|
_("Potentially unwanted character detected: Unicode BiDi Control")
|
|
end
|
|
end
|
|
end
|
|
end
|