Jump to content

Module:BreakIfBullet

From Archono Database
Revision as of 09:18, 17 March 2026 by NonaSoft (talk | contribs) (Created page with "local p = {} p.bib = function(frame) local input = frame.args[1] if string.sub(input, 1, 1) == "*" then return "<br>\n" .. input else return input end end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:BreakIfBullet/doc

local p = {}

p.bib = function(frame)
	local input = frame.args[1]
	if string.sub(input, 1, 1) == "*" then
		return "<br>\n" .. input
	else
		return input
	end
end
return p