Module:MOS mode degrees: Difference between revisions
ArrowHead294 (talk | contribs) mNo edit summary |
ArrowHead294 (talk | contribs) On second thought, one cell per line is much easier to read on this table |
||
| Line 117: | Line 117: | ||
-- Add table headers for first row | -- Add table headers for first row | ||
result = result | result = result | ||
.. "! rowspan=\"2\" | UDP " .. (is_true_mos and "" or " and<br />alterations ") -- If modmos, add "and alterations" string | .. "! rowspan=\"2\" | UDP" .. (is_true_mos and "\n" or " and<br />alterations\n") -- If modmos, add "and alterations" string | ||
.. " | .. "! rowspan=\"2\" | Cyclic<br />order\n" | ||
.. " | .. "! rowspan=\"2\" | Step<br />pattern\n" | ||
-- Add header for scale degrees | -- Add header for scale degrees | ||
result = result .. string.format(" | result = result .. string.format("! colspan=\"%d\" class=\"unsortable\" | Scale degree (%sdegree)\n", #step_matrices[1], mos_prefix) | ||
-- Add second row of headers | -- Add second row of headers | ||
| Line 128: | Line 128: | ||
.. "! 0" | .. "! 0" | ||
for i = 1, #step_patterns[1] do | for i = 1, #step_patterns[1] do | ||
result = result .. string.format(" | result = result .. string.format("\n! %d", i) | ||
end | end | ||
| Line 138: | Line 138: | ||
-- Add brightness order (as UDP), rotational order, and step pattern | -- Add brightness order (as UDP), rotational order, and step pattern | ||
.. string.format("| %s | .. string.format("| %s\n| %s\n| %s\n", udps[i], cpos[i], step_patterns[i]) | ||
-- Add scale degrees with cell coloring | -- Add scale degrees with cell coloring | ||
| Line 148: | Line 148: | ||
local style_code = (cell_color == p.cell_color_none and "" or string.format("style=\"background: %s;\" | ", cell_color)) | local style_code = (cell_color == p.cell_color_none and "" or string.format("style=\"background: %s;\" | ", cell_color)) | ||
result = result .. string.format(" | result = result .. string.format("| %s%s", style_code, degree_quality) | ||
end | end | ||
result = result .. "\n" | result = result .. "\n" | ||