Jump to content

Module:Hatnote inline/sandbox: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Default inline to true, duh
Also, nil needs to be forced true regardless of using yesno :/
Line 15: Line 15:
local args = mArguments.getArgs(frame)
local args = mArguments.getArgs(frame)
local hatnote = mHatnote.hatnote(frame)
local hatnote = mHatnote.hatnote(frame)
if yesno(args.inline, true) then
if args.inline == nil or yesno(args.inline, true) then
local subs = {
local subs = {
['^<div'] = '<span',
['^<div'] = '<span',

Revision as of 17:08, 28 June 2016

--------------------------------------------------------------------------------
--                              Module:Hatnote-inline                         --
--                                                                            --
-- This module produces hatnote-style links and links to related articles,    --
-- but inside a <span>, instead of the <div> used by Module:Hatnote.  It      --
-- implements the {{hatnote-inline}} meta-template.                           --
--------------------------------------------------------------------------------

local mHatnote = require('Module:Hatnote')
local mArguments = require('Module:Arguments')
local yesno = require('Module:Yesno')
local p = {}

function p.hatnoteInline (frame)
	local args = mArguments.getArgs(frame)
	local hatnote = mHatnote.hatnote(frame)
	if args.inline == nil or yesno(args.inline, true) then
		local subs = {
			['^<div'] = '<span',
			['</div>$'] = '</span>'
		}
		for k, v in pairs(subs) do hatnote = string.gsub(hatnote, k, v) end
	end
	return hatnote
end

p.hatnote = p.hatnoteInline --alias

return p