-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix chinese characters be recognized as email - first commit (#3185)
Co-authored-by: Michael Wang (Centific Technologies Inc) <[email protected]>
- Loading branch information
1 parent
66901d1
commit 25afa66
Showing
3 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,18 @@ | |
} | ||
] | ||
}, | ||
{ | ||
"Input": "a邮箱地址[email protected]", | ||
"Results": [ | ||
{ | ||
"Text": "[email protected]", | ||
"TypeName": "email", | ||
"Resolution": { | ||
"value": "[email protected]" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"Input": "Hello, @Carol, please write to me at [email protected] for more information on task #A1", | ||
"Results": [ | ||
|
@@ -142,13 +154,13 @@ | |
}, | ||
{ | ||
"Input": "Both [email protected] and [email protected] are not valid e-mail addresses.", | ||
"Comment": "By default the current system is strict. If a relaxed match is needed (to catch these), enable the Relaxed option.", | ||
"Comment": "By default the current system is strict. If a relaxed match is needed (to catch these), enable the Relaxed option.", | ||
"NotSupportedByDesign": "javascript, python", | ||
"Results": [] | ||
}, | ||
{ | ||
"Input": "Periods at the end of addresses can be ambiguous. Contact [email protected].", | ||
"Comment": "By default the current system is strict. If a relaxed match is needed (to catch the period), enable the Relaxed option.", | ||
"Comment": "By default the current system is strict. If a relaxed match is needed (to catch the period), enable the Relaxed option.", | ||
"NotSupportedByDesign": "javascript, python, java", | ||
"Results": [ | ||
{ | ||
|