Module:rad-stem/templates: Difference between revisions
Jump to navigation
Jump to search
TheNightAvl (talk | contribs) (Begun table formatting) |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 62: | Line 62: | ||
local function add(code) | local function add(code) | ||
table.insert(format_table, code) | table.insert(format_table, code) | ||
end | |||
local function th(data, rowspan, colspan) | |||
add("<th") | |||
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end | |||
if colspan and colspan~=1 then add(" colspan=" .. colspan) end | |||
add(">" .. data .. "</th>") | |||
end | |||
local function td(data, rowspan, colspan) | |||
add("<td") | |||
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end | |||
if colspan and colspan~=1 then add(" colspan=" .. colspan) end | |||
add(">" .. data .. "</td>") | |||
end | end | ||
Line 74: | Line 88: | ||
add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">") | add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">") | ||
add("<tr>") | add("<tr>") | ||
th("Declension of <i>" .. stems.nom .. "</i> (" .. decl_type[stems['type']] .. ")  ", 1, 4) | |||
add("</tr>") | add("</tr>") | ||
add("</table>") | add("</table>") |
Revision as of 01:01, 1 December 2023
local export = {}
local getArgs = require('Module:Arguments').getArgs
local m_stem = require("Module:rad-stem")
local m_parameters = require("Module:parameters")
function get_stems(args)
local shifted = {"noun", "_"}
local i = 1
while args[i] do
shifted[i+2] = args[i]
i = i + 1
end
return m_stem.getNounStem(shifted)
end
function break_adj(adj)
local C = "bcdðfghħjĵkķlmnņpqrsștvwxzþ°"
local temp = adj
temp = mw.ustring.gsub(temp, "([" .. C .. "])([" .. C .. "])íș$", "%1%2ieș")
temp = mw.ustring.gsub(temp, "(°)", "")
temp = mw.ustring.gsub(temp, "(íș)$", "jeș")
temp = mw.ustring.gsub(temp, "(úș)$", "uoș")
temp = mw.ustring.gsub(temp, "(ýș)$", "yeș")
temp = mw.ustring.gsub(temp, "(oș)$", "uș")
return temp
end
function rad_link(word)
return require("Module:links").full_link{
term = word,
language = m_languages.get_by_code("rad")
}
end
function rad_IPA(word)
local IPA = require("Module:rad-IPA").generate{
word,
"format",
"nolarge"
}
return "<span style=\"color:dimgrey\">" .. IPA .. "</span>"
end
function export.sg_pl(frame)
local args = getArgs(frame)
local stems = get_stems(args)
local adj = args['adj']
local adj_broken = ""
local adj_broken_e = ""
if adj then
adj_broken = args['adjbreak'] or break_adj(adj)
adj_broken_e = mw.ustring.gsub(adj_broken, "(uș)$", "ûș")
end
local format_table = {}
local function add(code)
table.insert(format_table, code)
end
local function th(data, rowspan, colspan)
add("<th")
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end
if colspan and colspan~=1 then add(" colspan=" .. colspan) end
add(">" .. data .. "</th>")
end
local function td(data, rowspan, colspan)
add("<td")
if rowspan and rowspan~=1 then add(" rowspan=" .. rowspan) end
if colspan and colspan~=1 then add(" colspan=" .. colspan) end
add(">" .. data .. "</td>")
end
local decl_type = {
["C"] = "heavy",
["CH"] = "spirant",
["VH"] = "spirant",
["V"] = "light",
["G"] = "semi-light"
}
add("<table class=\"mw-collapsible mw-collapsed wikitable inflection table\" style=\"text-align: center\">")
add("<tr>")
th("Declension of <i>" .. stems.nom .. "</i> (" .. decl_type[stems['type']] .. ")  ", 1, 4)
add("</tr>")
add("</table>")
return table.concat(format_table)
end
return export
--[[
Debug console test string:
=p.sg_pl(mw.getCurrentFrame():newChild{title="whatever",args={"hv", "o~u^u", "þ"}})
]]--