Module:Su: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Mr. Stradivarius use a more Lua-like syntax for the luaMain function |
meta>Mr. Stradivarius use fontSize rather than fontWidth (no idea why the argument name is "w" in the template), and convert a stray variable name |
||
Line 20: | Line 20: | ||
local options = { | local options = { | ||
align = args.a, | align = args.a, | ||
fontSize = args.w | |||
} | } | ||
return p.luaMain(sup, sub, options) | return p.luaMain(sup, sub, options) | ||
Line 33: | Line 33: | ||
['display'] = 'inline-block', | ['display'] = 'inline-block', | ||
['margin-bottom'] = '-0.3em', | ['margin-bottom'] = '-0.3em', | ||
['vertical-align'] = | ['vertical-align'] = sub and '-0.4em' or '0.8em', | ||
['line-height'] = '1.2em', | ['line-height'] = '1.2em', | ||
} | } | ||
if options. | if options.fontSize == 'f' or options.fontSize == 'fixed' then | ||
span:css{ | span:css{ | ||
['font-family'] = 'monospace,courier', | ['font-family'] = 'monospace,courier', | ||
Line 42: | Line 42: | ||
} | } | ||
else | else | ||
span:css('font-size', options. | span:css('font-size', options.fontSize and options.fontSize or '85%') | ||
end | end | ||
if options.align == 'r' or options.align == 'right' then | if options.align == 'r' or options.align == 'right' then |
Revision as of 09:19, 17 June 2014
Documentation for this module may be created at Module:Su/doc
-- This module implements {{su}}.
local p = {}
function p.main(frame)
-- Use arguments from the parent frame only, and remove any blank arguments.
-- We don't need to trim whitespace from any arguments, as this module only
-- uses named arguments, and whitespace is trimmed from them automatically.
local origArgs = frame:getParent().args
local args = {}
for k, v in pairs(origArgs) do
if v ~= '' then
args[k] = v
end
end
-- Define the variables to pass to luaMain.
local sup = args.p
local sub = args.b
local options = {
align = args.a,
fontSize = args.w
}
return p.luaMain(sup, sub, options)
end
function p.luaMain(sup, sub, options)
options = options or {}
local span = mw.html.create('span')
-- Set the styles.
span:css{
['display'] = 'inline-block',
['margin-bottom'] = '-0.3em',
['vertical-align'] = sub and '-0.4em' or '0.8em',
['line-height'] = '1.2em',
}
if options.fontSize == 'f' or options.fontSize == 'fixed' then
span:css{
['font-family'] = 'monospace,courier',
['font-size'] = '85%'
}
else
span:css('font-size', options.fontSize and options.fontSize or '85%')
end
if options.align == 'r' or options.align == 'right' then
span:css('text-align', 'right')
elseif options.align == 'c' or options.align == 'center' then
span:css('text-align', 'center')
else
span:css('text-align', 'left')
end
-- Add the wikitext.
span
:wikitext(sup)
:tag('br', {selfClosing = true}):done()
:wikitext(sub)
return tostring(span)
end
return p