forked from gfscott/eleventy-plugin-embed-everything
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
57 additions
and
13 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 |
---|---|---|
@@ -1,46 +1,90 @@ | ||
module.exports = [ | ||
{ | ||
type: "User status, ideal", | ||
type: "Twitter.com User status, ideal", | ||
str: "https://twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, with protocol, without secure, with slash, without www", | ||
type: "Twitter.com User status, with protocol, without secure, with slash, without www", | ||
str: "http://twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, without protocol, with slash, without www", | ||
type: "Twitter.com User status, without protocol, with slash, without www", | ||
str: "//twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, with protocol, with secure, with slash, with www", | ||
type: "Twitter.com User status, with protocol, with secure, with slash, with www", | ||
str: "https://www.twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, with protocol, without secure, with slash, with www", | ||
type: "Twitter.com User status, with protocol, without secure, with slash, with www", | ||
str: "http://www.twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, without protocol, with slash, with www", | ||
type: "Twitter.com User status, without protocol, with slash, with www", | ||
str: "//www.twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, without protocol, without slash, without www", | ||
type: "Twitter.com User status, without protocol, without slash, without www", | ||
str: "twitter.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "User status, ideal, with arbitrary param", | ||
type: "Twitter.com User status, ideal, with arbitrary param", | ||
str: "https://twitter.com/SaraSoueidan/status/1289865845053652994?foo", | ||
}, | ||
{ | ||
type: "User status, ideal, with arbitrary key-value param", | ||
type: "Twitter.com User status, ideal, with arbitrary key-value param", | ||
str: "https://twitter.com/SaraSoueidan/status/1289865845053652994?foo=bar", | ||
}, | ||
{ | ||
type: "User status, ideal, with arbitrary multiple params", | ||
type: "Twitter.com User status, ideal, with arbitrary multiple params", | ||
str: "https://twitter.com/SaraSoueidan/status/1289865845053652994?foo&bar", | ||
}, | ||
{ | ||
type: "User status, ideal, with arbitrary multiple key-value params", | ||
type: "Twitter.com User status, ideal, with arbitrary multiple key-value params", | ||
str: "https://twitter.com/SaraSoueidan/status/1289865845053652994?foo=bar&baz=boo", | ||
}, | ||
{ | ||
type: "X.com User status, ideal", | ||
str: "https://x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, with protocol, without secure, with slash, without www", | ||
str: "http://x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, without protocol, with slash, without www", | ||
str: "//x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, with protocol, with secure, with slash, with www", | ||
str: "https://www.x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, with protocol, without secure, with slash, with www", | ||
str: "http://www.x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, without protocol, with slash, with www", | ||
str: "//www.x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, without protocol, without slash, without www", | ||
str: "x.com/SaraSoueidan/status/1289865845053652994", | ||
}, | ||
{ | ||
type: "X.com User status, ideal, with arbitrary param", | ||
str: "https://x.com/SaraSoueidan/status/1289865845053652994?foo", | ||
}, | ||
{ | ||
type: "X.com User status, ideal, with arbitrary key-value param", | ||
str: "https://x.com/SaraSoueidan/status/1289865845053652994?foo=bar", | ||
}, | ||
{ | ||
type: "X.com User status, ideal, with arbitrary multiple params", | ||
str: "https://x.com/SaraSoueidan/status/1289865845053652994?foo&bar", | ||
}, | ||
{ | ||
type: "X.com User status, ideal, with arbitrary multiple key-value params", | ||
str: "https://x.com/SaraSoueidan/status/1289865845053652994?foo=bar&baz=boo", | ||
}, | ||
]; |