Module:TVChannelList/S: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
PeaceDeadC (talk | contribs) Created page with "local S = {} S.channels = { ["Sexy Hot"] = { name = "Sexy Hot", type = "Television Network", genre = "Straight", streaming = "https://hotgo.com", category = {"Sexy Hot models", "Adult Television Networks"} }, ["Red Fire TV"] = { name = "Red Fire TV", type = "Channel", genre = "Straight", xvideos = "https://xvideos.com/channels/redfiretv", category = "Red Fire TV models" } }..." |
No edit summary Tag: Manual revert |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
-- Channel data for names starting with 'S' |
|||
local S = {} |
local S = {} |
||
-- Channel data |
|||
S.channels = { |
S.channels = { |
||
["Sexy Hot"] = { |
["Sexy Hot"] = { |
||
name = "Sexy Hot", |
name = "Sexy Hot", |
||
aliases = {"sexyhot", "sexy-hot"}, -- Alternative search names |
|||
type = "Television Network", |
type = "Television Network", |
||
genre = "Straight", |
genre = "Straight", |
||
streaming = "https://hotgo.com", |
streaming = "https://hotgo.com", |
||
category = {"Sexy Hot models", "Adult Television Networks"} |
category = {"Sexy Hot models", "Adult Television Networks Models"}, |
||
notes = "Available on Hot Go streaming platform or Pay Television" |
|||
}, |
|||
["Red Fire TV"] = { |
|||
name = "Red Fire TV", |
|||
type = "Channel", |
|||
genre = "Straight", |
|||
xvideos = "https://xvideos.com/channels/redfiretv", |
|||
category = "Red Fire TV models" |
|||
} |
} |
||
} |
|||
-- Redirects for alternative names |
|||
S.redirects = { |
|||
["sexy hot tv"] = "Sexy Hot", |
|||
["hot tv"] = "Sexy Hot" |
|||
} |
} |
||
Latest revision as of 01:56, 28 February 2025
Documentation for this module may be created at Module:TVChannelList/S/doc
-- Channel data for names starting with 'S'
local S = {}
-- Channel data
S.channels = {
["Sexy Hot"] = {
name = "Sexy Hot",
aliases = {"sexyhot", "sexy-hot"}, -- Alternative search names
type = "Television Network",
genre = "Straight",
streaming = "https://hotgo.com",
category = {"Sexy Hot models", "Adult Television Networks Models"},
notes = "Available on Hot Go streaming platform or Pay Television"
}
}
-- Redirects for alternative names
S.redirects = {
["sexy hot tv"] = "Sexy Hot",
["hot tv"] = "Sexy Hot"
}
return S