ମଡ୍ୟୁଲ:Other ships

ଉଇକିପିଡ଼ିଆ‌ରୁ

Usage[ସମ୍ପାଦନା]

This module should neither be invoked directly nor used from Lua. Use the {{other ships}} template instead.


local mOtheruses = require('Module:Other uses')
local mArguments = require('Module:Arguments')
local mTableTools = require('Module:TableTools')
local p = {}
p.otherships = function (frame)
	local args = mTableTools.compressSparseArray(mArguments.getArgs(frame))
	local options = {
		title = mw.title.getCurrentTitle().text,
		otherText = 'ships with the same name'
	}
	return mOtheruses._otheruses(args, options)
end
return p