Skip to content

Commit

Permalink
Options: Update autolink exclusions tooltip
Browse files Browse the repository at this point in the history
* An attempt at clarity
  • Loading branch information
mdmower committed Jul 21, 2018
1 parent cd29296 commit d9d1aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"autolinkExclusionsInfoText": {
"description": "Guidelines for entries in the autolink exclusions text(area) box",
"message": "List websites &ndash; one per line &ndash; that should not be parsed by the autolink feature. All matching tests are case-insensitive. Do not specify the protocol; http and https will be assumed.<br><br><span style=\"text-decoration: underline;\">Normal matching</span>: Websites will be matched based on whether the string matches the <em>beginning</em> of the URL.<br>Example: <strong>example.com/abc</strong> will match http://example.com/abc/def but will not match http://www.example.com/abc/def.<br><br><span style=\"text-decoration: underline;\">Regex matching</span>: Surround an entry by forward slashes (/) to perform a regex match on an entire URL, omitting the protocol.<br>Example: <strong>/(?:www\\.)?example\\.com\\/abc(?:.+)?/</strong> will match both http://example.com/abc/def and http://www.example.com/abc/def."
"message": "List websites &ndash; one per line &ndash; that should not be parsed by the autolink feature. All matching tests are case-insensitive. Do not specify the protocol; http and https will be assumed.<br><br><span style=\"text-decoration: underline;\">Normal matching</span>: Websites will be matched based on whether the string matches the URL, <em>beginning</em> with the hostname. Wildcards are not supported.<br>Example: <strong>example.com/abc</strong> will match http://example.com/abc/def but will not match http://www.example.com/abc/def.<br><br><span style=\"text-decoration: underline;\">Regex matching</span>: Surround an entry by forward slashes (/) to perform a regex match on an entire URL, beginning with the hostname.<br>Example: <strong>/example\\.com\\/abc.*/</strong> will match both http://example.com/abc/def and http://www.example.com/abc/def."
},
"autolinkExclusionsInvalidUrl": {
"description": "Report that test URL is invalid due to missing http/https protocol",
Expand Down

0 comments on commit d9d1aee

Please sign in to comment.