Module:pine-noun

From Linguifex
Revision as of 15:54, 26 November 2025 by Sware (talk | contribs) (Created page with "local export = {} local m_u = require('Module:utilities') local m_l = require('Module:links') local m_pron = require('Module:pine-pron') local lang = require('Module:languages').getByCode("pine") local sub = mw.ustring.sub local find = mw.ustring.find local match = mw.ustring.match local gmatch = mw.ustring.gmatch local gsub = mw.ustring.gsub local u = mw.ustring.char local split = mw.text.split local gsplit = mw.text.gsplit local PAGENAME = mw.title.getCurrentTitle()...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


local export = {}

local m_u = require('Module:utilities')
local m_l = require('Module:links')
local m_pron = require('Module:pine-pron')
local lang = require('Module:languages').getByCode("pine")

local sub = mw.ustring.sub
local find = mw.ustring.find
local match = mw.ustring.match
local gmatch = mw.ustring.gmatch
local gsub = mw.ustring.gsub
local u = mw.ustring.char
local split = mw.text.split
local gsplit = mw.text.gsplit

local PAGENAME = mw.title.getCurrentTitle().text
local NAMESPACE = mw.title.getCurrentTitle().nsText

local function detect_decl(word)
end

-- The main entry point.
function export.show(frame)
	local parent_args = frame:getParent().args
	
	-- make the table
	return make_table(data)
end

local function make_table(data)
	
end

return export