Module:Param Parse: Difference between revisions
Append hours to duration param
(Handle currency throwing error) |
(Append hours to duration param) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 140:
-- Standardized description function
end▼
return parse.has_content(description)▼
parse.description = {
name = 'description',
smw_property = 'Description',
category_incomplete = 'Needs description',
Line 319 ⟶ 313:
-- Value
function parse.value_func(val)
local
if
return val
end
Line 406 ⟶ 400:
func = {name = parse.number_or_number_range_high, params = {Infobox.raw_param('profession_b_level')}},
smw_property = 'Profession Level B High',
}▼
parse.profession = {▼
name = 'profession',▼
func = parse.has_content,▼
category_incomplete = 'Needs profession',▼
}
Line 428 ⟶ 415:
smw_func = parse.yes_no_smw,
category_incomplete = 'Needs passiveness'
▲}
function parse.duration_func(hours)
hours = string.gsub(hours or '',',','')
return (tonumber(hours) .. " Hours")
smw_property = 'Duration',
}
|