Module:User:Erutuon/08

Hello, you have come here looking for the meaning of the word Module:User:Erutuon/08. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Erutuon/08, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Erutuon/08 in singular and plural. Everything you need to know about the word Module:User:Erutuon/08 you have here. The definition of the word Module:User:Erutuon/08 will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Erutuon/08, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

کە ka ke
کردِت kirdi(t) kirdit
دەکەم dekam dekem
دەکەیت dekay(t) dekeyt
دەکات deka(t) dekat
دەکەین dekayn dekeyn
دەکەن dekan deken
خەریکِم دەکەم xerîkim dekam xerîkim dekem
خەریکی دەکەیت xerîkî dekay(t) xerîkî dekeyt
خەریکە دەکات xerîke deka(t) xerîke dekat
خەریکین دەکەین xerîkîn dekayn xerîkîn dekeyn
خەریکِن دەکەن xerîkin dekan xerîkin deken
بِکەم bikam bikem
بِکەیت bikay(t) bikeyt
بِکات bika(t) bikat
بِکەین bikayn bikeyn
بِکەن bikan biken
بِکە bika bike
بِکەین bikayn bikeyn
بِکەن bikan biken

local export = {}

local Array = require "Module:array"

-- Convert lines of tab-separated items to a table.
function export.tabs_to_table(frame)
	local text = frame.args or frame:getParent().args
	local output = Array()
	
	output:insert '{|'
	for line in text:gmatch '+' do
		output:insert "|-"
		local row = Array()
		for item in line:gmatch '+' do
			row:insert('| ' .. item)
		end
		output:insert(row:concat ' |')
	end
	output:insert '|}'
	
	output = output:concat '\n'
	
	return output
end

return export