Jump to content

Module:BreakIfBullet

From Archono Database

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