Actions

Module

Editing List

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 80: Line 80:
 
-- ul_style and ol_style are included for backwards compatibility. No
 
-- ul_style and ol_style are included for backwards compatibility. No
 
-- distinction is made for ordered or unordered lists.
 
-- distinction is made for ordered or unordered lists.
data.listStyle = args.list_style
+
data.listStyle = args.list_style or args.ul_style or args.ol_style
  
 
-- List items
 
-- List items
Line 90: Line 90:
 
local item = {}
 
local item = {}
 
item.content = args[num]
 
item.content = args[num]
item.style = args['item' .. tostring(num) .. '_style']
+
item.style = args['item_style' .. tostring(num)]
or args['item_style' .. tostring(num)]
+
or args['li_style' .. tostring(num)]
item.value = args['item' .. tostring(num) .. '_value']
+
item.value = args['item_value' .. tostring(num)]
or args['item_value' .. tostring(num)]
 
 
table.insert(data.items, item)
 
table.insert(data.items, item)
 
end
 
end
Line 149: Line 148:
 
function p.renderTrackingCategories(args)
 
function p.renderTrackingCategories(args)
 
local isDeprecated = false -- Tracks deprecated parameters.
 
local isDeprecated = false -- Tracks deprecated parameters.
for k, v in pairs(args) do
+
for i, param in ipairs{'ul_style', 'ol_style', 'li_style'} do
k = tostring(k)
+
if args[param] then
if k:find('^item_style%d+$') or k:find('^item_value%d+$') then
 
 
isDeprecated = true
 
isDeprecated = true
 
break
 
break
 +
end
 +
end
 +
if not isDeprecated then
 +
for k, v in pairs(args) do
 +
k = tostring(k)
 +
if k:find('^li_style%d+$') then
 +
isDeprecated = true
 +
break
 +
end
 
end
 
end
 
end
 
end

Please note that all contributions to Unofficial Stationeers Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Unofficial Stationeers Wiki:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel | Editing help (opens in new window)