@Cozy start testing the implementation. This is a rough draft, so it requires significant improvements.
To call the list in an article, use the following syntax:
{{TVChannelListTop}}
{{TVChannelList|channel=Sexy Hot}}
{{TVChannelList|channel=Red Fire TV}}
Full version with all parameters:
{{TVChannelListTop}} - Opens the table
{{TVChannelList
|channel=Channel Name - Required: Name of the channel as it appears in the module
|type=Channel Type - Optional: Overrides type from module (e.g. "Channel", "Television Network")
|genre=Content Genre - Optional: Overrides genre from module
|alias=Display Name - Optional: Overrides alias from module
|notes=Custom Notes - Optional: Overrides notes from module
}}
Tasks:
Add all necessary entries to the dictionary.
The dictionary is a submodule, which starts with the first letter of the entry’s name.
Example: For Sexy Hot, the dictionary should be updated in:
Module:TVChannelList/S
Review the code and provide comments.
If possible, analyze the structure and suggest improvements.
Test available parameters to ensure they function correctly.
Template for Adding a New Entry
Use the following template to add new channel entries in the appropriate submodule:
-- Template for adding new channel entries to Module:TVChannelList/[Letter]
["Channel Name"] = {
-- Required fields
name = "Channel Name", -- Display name in the table
type = "Channel", -- Type: "Channel", "Television Network", etc
genre = "Straight", -- Content genre
-- Optional platform URLs (at least one should be provided)
website = "", -- Main website URL
xvideos = "", -- Xvideos channel URL
streaming = "", -- Streaming platform URL
-- Optional fields for improved search and display
aliases = { -- Alternative names for search (lowercase)
"alternative-name1",
"alternative-name2"
},
-- Categories (can be single string or table)
category = { -- Categories to add in main namespace
"Category Name 1",
"Category Name 2"
},
-- OR single category:
-- category = "Single Category Name",
alias = "", -- Alternative name displayed in table
notes = "" -- Additional information shown in table
},