This page is "edit" protected. The "sysop" right is required to "edit" this page.<ul class='mw-logevent-loglines'> <li data-mw-logid="1976" data-mw-logaction="protect/protect" class="mw-logline-protect"> <a href="/wiki/Special:Log?logid=1976" title="Special:Log">20:15, 30 January 2021</a> <a href="/wiki/User:Celeste" class="mw-userlink" title="User:Celeste"><bdi>Celeste</bdi></a> <span class="mw-usertoollinks mw-changeslist-links"><span><a href="/wiki/User_talk:Celeste" class="mw-usertoollinks-talk" title="User talk:Celeste">talk</a></span> <span><a href="/wiki/Special:Contributions/Celeste" class="mw-usertoollinks-contribs" title="Special:Contributions/Celeste">contribs</a></span></span> protected <a href="/wiki/Module:Outdent" title="Module:Outdent">Module:Outdent</a> [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Delete=Allow only administrators] (indefinite) [Protect=Allow only administrators] (indefinite) <span class="mw-logevent-actionlink">(<a href="/wiki/Module:Outdent?action=history&amp;offset=20210130201554" title="Module:Outdent">hist</a>)</span> </li> </ul></ul>
This page is "move" protected. The "sysop" right is required to "move" this page.<ul class='mw-logevent-loglines'> <li data-mw-logid="1976" data-mw-logaction="protect/protect" class="mw-logline-protect"> <a href="/wiki/Special:Log?logid=1976" title="Special:Log">20:15, 30 January 2021</a> <a href="/wiki/User:Celeste" class="mw-userlink" title="User:Celeste"><bdi>Celeste</bdi></a> <span class="mw-usertoollinks mw-changeslist-links"><span><a href="/wiki/User_talk:Celeste" class="mw-usertoollinks-talk" title="User talk:Celeste">talk</a></span> <span><a href="/wiki/Special:Contributions/Celeste" class="mw-usertoollinks-contribs" title="Special:Contributions/Celeste">contribs</a></span></span> protected <a href="/wiki/Module:Outdent" title="Module:Outdent">Module:Outdent</a> [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Delete=Allow only administrators] (indefinite) [Protect=Allow only administrators] (indefinite) <span class="mw-logevent-actionlink">(<a href="/wiki/Module:Outdent?action=history&amp;offset=20210130201554" title="Module:Outdent">hist</a>)</span> </li> </ul></ul>

Module:Outdent

From Celeste Wiki
Jump to navigation Jump to search

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

local p = {}
local getArgs = require('Module:Arguments').getArgs

function p.outdent (frame) 
	local args = getArgs(frame)
	local width = 0
	
	args['r'] = args['reverse'] or args['indent'] or args['r'] or args['in']	-- aliases for reverse
	if not args[1] then args[1] = '' end                                        -- un-nil args[1]
	
	width = width + select(2, string.gsub(args[1],':',''))						-- increase by 1 for every :
	width = width + select(2, string.gsub(args[1],'*',''))						-- increase by 1 for every *
	width = width + select(2, string.gsub(args[1],'#','')) * 2					-- increase by 2 for every #
	
	if width == 0 then width = tonumber(args[1]) end							-- set width to args[1] if needed
	
	if not width then width = 10 end											-- default width
	if width < 0
	then
		width = -width
		args['r'] = not args['r']
	end
	if width > 40 then width = 40 end											-- max width
	
	width = width * 1.6															-- set width to proper width
	
	local top = '<span style="display:block;width:' .. width .. 'em;height:0.5em;' .. (width == 0 and '' or 'border-bottom:1px solid #AAA;') .. 'border-' .. ((width == 0 or args['r']) and 'left' or 'right') ..':1px solid #AAA;"></span>' -- top half
	local bottom = '<span style="display:block;width:' .. width .. 'em;height:0.5em;border-' .. (args['r'] and 'right' or 'left') .. ':1px solid #AAA;"></span>' -- bottom half
	local note = args[2] and '<span>([[Wikipedia:Indentation#Outdenting|outdent]])&#32;</span>' or '' -- note
	
	return '<div class="outdent-template" style="position:relative;left:1px;">' .. top .. bottom .. note .. '</div>';
end

return p