Mô đun:families/track-bad-etym-code
Giao diện
- Trang mô đun này thiếu trang con tài liệu. Xin hãy tạo trang tài liệu này.
- Liên kết hữu ích: trang gốc • trang con của trang gốc • liên kết • nhúng • trường hợp kiểm thử • chỗ thử
local function track(page)
require("Module:debug/track")("families/" .. page)
return true
end
-- FIXME: Temporary. Lists nonstandard codes to track, so we can consider eliminating them.
local nonstandard_codes_to_track = {
["OIr."] = true,
["MIr."] = true,
}
return function(code)
if nonstandard_codes_to_track[code] then
track(code)
end
return true
end