Module:Distinguish: திருத்தங்களுக்கு இடையிலான வேறுபாடு
Jump to navigation
Jump to search
imported>Gowtham Sampath சி Kanagsஆல் செய்யப்பட்ட கடைசித் தொகுப்புக்கு முன்நிலையாக்கப்பட்டது |
imported>Sukanthi "local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments --initialize lazily local mTableTools --initialize lazily local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.distinguish(frame) mArguments = require('Module:Arguments') mTableTools = require('Module:..."-இப்பெயரில் புதிய பக்கம் உருவாக்கப்பட்டுள்ளது |
||
(வேறுபாடு ஏதுமில்லை)
| |||
09:47, 22 சனவரி 2024 இல் கடைசித் திருத்தம்
Documentation for this module may be created at Module:Distinguish/doc
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local mTableTools --initialize lazily
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}
function p.distinguish(frame)
mArguments = require('Module:Arguments')
mTableTools = require('Module:TableTools')
local args = mTableTools.compressSparseArray(mArguments.getArgs(frame))
return p._distinguish(args)
end
function p._distinguish(args)
checkType("_distinguish", 1, args, 'table')
if #args == 0 then return '' end
local text = string.format(
'%s உடன் குழப்பிக் கொள்ளாதீர்கள்.',
mHatlist.orList(args, true)
)
return mHatnote._hatnote(text)
end
return p