Module:Gaps
local p = {}
local getArgs
function p.main(frame)
if not getArgs then
getArgs = require('Module:Arguments').getArgs
end
local args = getArgs(frame, {wrappers = 'Template:Gaps'})
local ret = mw.html.create('span')
:css({['white-space'] = 'nowrap',
['font-size'] = args.size})
if args.lhs then
ret:wikitext(args.lhs .. ' = ')
end
local gap = string.lower(args.gap or '')
local gapSize, gapUnit = string.match(gap,'([%d%.]+)%s*([ep][mnx])')
local acceptedUnits = { em = 'em', en = 'en', px = 'px' }
gapUnit = acceptedUnits[gapUnit]
if gapSize and gapUnit then
gap = gapSize..gapUnit
else
gap = '0.25em'
end
for k,v in ipairs(args) do
if k == 1 then
ret:wikitext(v)
else
ret:tag('span')
:css('margin-left',gap)
:wikitext(v)
end
end
if args.e then
ret
:tag('span')
:css({['margin-left'] = '0.27em',
['margin-right']= '0.27em'})
:wikitext('×')
:done()
:wikitext(args.base or '10')
:tag('span')
:css('display','none')
:wikitext('^')
:done()
:tag('sup')
-- the double parentheses here are not redundant.
-- they keep the second return value from being passed
:wikitext((mw.ustring.gsub(args.e,'-','−')))
:done()
end
if args.u then
ret:wikitext(' ' .. args.u)
end
return ret
end
return p
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.