Module:rad-stem/templates: Difference between revisions
Jump to navigation
Jump to search
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 21: | Line 21: | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local stems = get_stems(args) | local stems = get_stems(args) | ||
local adj = args['adj'] | |||
return | return adj | ||
end | end | ||
Revision as of 00:24, 28 November 2023
local export = {}
local getArgs = require('Module:Arguments').getArgs
local m_stem = require("Module:rad-stem")
local m_links = require("Module:links")
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 export.sg_pl(frame)
local args = getArgs(frame)
local stems = get_stems(args)
local adj = args['adj']
return adj
end
return export
--[[
Debug console test string:
=p.sg_pl(mw.getCurrentFrame():newChild{title="whatever",args={"hv", "o~u^u", "þ"}})
]]--