Content deleted Content added
Update tags per request |
Add first=poj per request |
||
Line 113:
local t1 = false -- whether traditional Chinese characters go first
local j1 = false -- whether Cantonese Romanisations go first
local poj1 = false -- whether Hokkien Romanisations go first
local testChar
if (args["first"]) then
Line 118 ⟶ 119:
if (testChar == "t") then
t1 = true
if (testChar == "j") then
j1 = true
if (testChar == "poj") then
poj1 = true
end
end
end
Line 142 ⟶ 146:
orderlist[8] = "tp"
orderlist[9] = "w"
end
if (poj1) then
orderlist[4] = "poj"
orderlist[5] = "p"
orderlist[6] = "tp"
orderlist[7] = "w"
orderlist[8] = "j"
orderlist[9] = "cy"
orderlist[10] = "sl"
end
|