local p = {} function p.OrderList(frame) local list = "<ol start=\"0\">\n" for i in string.gmatch(frame.args[1], "[^\n]+") do list = list .. "<li>" .. i .. "</li>\n" end list = list .. "</ol>" return list end return p