OLD | NEW |
(Empty) | |
| 1 { |
| 2 "version": 2, |
| 3 |
| 4 "expressions": [ |
| 5 // Comma or semicolon instead of dot |
| 6 {"find": "[,;]", "replace": "."}, |
| 7 |
| 8 // Leading or trailing dots |
| 9 {"find": "^\\.+|\\.+$", "replace": ""}, |
| 10 |
| 11 // Only two of the three w's |
| 12 {"find": "^w{2,4}(\\.)([^\\.]+\\..*)$", "replace": "www.$2"}, |
| 13 |
| 14 // Missing the dot |
| 15 {"find": "([^\\.])(com|net|org|edu|mil|gov|aero|biz|coop|info|museum|name|pr
o|cat|jobs|mobi|travel)$", "replace": "$1.$2"} |
| 16 ], |
| 17 |
| 18 // Automatically generated dictionaries |
| 19 "domain":{} |
| 20 } |
OLD | NEW |