--[[
-- This module produces a "මෙම මාතෘකාව පිළිබඳ වැඩිදුර තොරතුරු සඳහා" link. It implements
-- the {{details}} template.
--]]

local mHatnote = require('Module:Hatnote')
local mArguments -- lazily initialise

local p = {}

function p.details(frame)
	mArguments = require('Module:Arguments')
	local args = mArguments.getArgs(frame, {parentOnly = true})
	local page = args[1]
	local topic = args[2]
	if not page then
		return mHatnote.makeWikitextError(
			'no page name specified',
			'Template:Details#Errors',
			args.category
		)
	end
	local options = {
		selfref = args.selfref,
	}
	return p._details(page, topic, options)
end

function p._details(page, topic, options)
	page = mHatnote._formatLink(page)
	topic = topic or 'මෙම මාතෘකාව'
	local text = string.format('%s පිළිබඳ වැඩිදුර තොරතුරු සඳහා, %s බලන්න.', topic, page)
	options = options or {}
	return mHatnote._hatnote(text, options)
end

return p
"https://si.wikipedia.org/w/index.php?title=Module:Details&oldid=414368" වෙතින් සම්ප්‍රවේශනය කෙරිණි