diff options
author | Go MAEDA <maeda@farend.jp> | 2023-04-16 08:02:30 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-04-16 08:02:30 +0000 |
commit | 0f6507a607c10fbc971f4bb148594cb0de5c2e71 (patch) | |
tree | 49f2bfa1f04dfca60c2e60e1e26cf3d05db87156 /lib | |
parent | 3c8b9535a38a2675d6f41ab34c6def38f98a7421 (diff) | |
download | redmine-0f6507a607c10fbc971f4bb148594cb0de5c2e71.tar.gz redmine-0f6507a607c10fbc971f4bb148594cb0de5c2e71.zip |
Change the notation of "contains any of" filter operator to "*~" (#38435).
git-svn-id: https://svn.redmine.org/redmine/trunk@22197 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/wiki_formatting/textile/redcloth3.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/textile/redcloth3.rb b/lib/redmine/wiki_formatting/textile/redcloth3.rb index 406fca08d..e93d16551 100644 --- a/lib/redmine/wiki_formatting/textile/redcloth3.rb +++ b/lib/redmine/wiki_formatting/textile/redcloth3.rb @@ -348,7 +348,7 @@ class RedCloth3 < String S = "(?:#{S_CSPN}?#{S_RSPN}|#{S_RSPN}?#{S_CSPN}?)" C = "(?:#{C_CLAS}?#{C_STYL}?#{C_LNGE}?|#{C_STYL}?#{C_LNGE}?#{C_CLAS}?|#{C_LNGE}?#{C_STYL}?#{C_CLAS}?)" # PUNCT = Regexp::quote( '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~' ) - PUNCT = Regexp::quote( '!"#$%&\'*+,-./:;=?@\\^_`|~' ) + PUNCT = Regexp::quote( '!"#$%&\'*+,-./:;=?@\\^_`*~' ) PUNCT_NOQ = Regexp::quote( '!"#$&\',./:;=?@\\`|' ) PUNCT_Q = Regexp::quote( '*-_+^~%' ) HYPERLINK = '(\S+?)([^\w\s/;=\?]*?)(?=\s|<|$)' |