diff options
author | Gitoffthelawn <Gitoffthelawn@users.noreply.github.com> | 2023-01-16 23:34:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 23:34:27 -0800 |
commit | 03f39921b8889417f74bdca48044a01f15102266 (patch) | |
tree | 43a71097870e0d0a1287b64bb19306afdde8f21f /README.md | |
parent | c9a2713d6e0949cd7d9732e9e3486a6fd78161b1 (diff) | |
parent | 828a30534139e2c0dc046e4145e0a9ce49c61a21 (diff) |
Merge pull request #318 from jacobdonenfeld/patch-1
README AMP regex tolerance for /s/
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ Opera extension is no longer present (as of 2023/01/16) ### AMP redirect - Example URL: `https://www.google.com/amp/www.example.com/amp/document` -- Include pattern: `^(?:https?://)www.(?:google|bing).com/amp/(.*)` +- Include pattern: `^(?:https?://)www.(?:google|bing).com/amp/(?:s/)?(.*)` - Redirect to: `https://$1` - Pattern type: Regular Expression - Description: AMP is bad: <https://80x24.net/post/the-problem-with-amp/> |