Module:siwa-noun: Difference between revisions

From Linguifex
Jump to navigation Jump to search
m (Sware moved page Module:siwa-nouns to Module:siwa-noun without leaving a redirect)
No edit summary
Line 1: Line 1:
local export = {}
local export = {}
-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
local parent_args = frame:getParent().args
if mw.title.getCurrentTitle().nsText ~= "Reconstruction" then return end
local stems = nil
local decl_type = {}
local word = mw.title.getCurrentTitle().subpageText
local args = {}
end


return export
return export

Revision as of 22:29, 2 February 2021



local export = {}

-- The main entry point.
-- This is the only function that can be invoked from a template.
function export.show(frame)
	local parent_args = frame:getParent().args
	if mw.title.getCurrentTitle().nsText ~= "Reconstruction" then return end
	
	local stems = nil
	local decl_type = {}
	local word = mw.title.getCurrentTitle().subpageText
	local args = {}
	
	
	
	
end

return export