Module:Infobox Language

From The K Language Wiki
Revision as of 11:14, 7 January 2022 by Razetime (talk | contribs) (Created page with "local capiunto = require 'capiunto' local p = {} function p.main(frame) local args = frame:getParent().args local headerStyle if args.headerstyle and args.headerstyle ~= '' then headerStyle = string.format('background-color:%s;', args.headerstyle) else headerStyle = 'background-color:grey;' end local retval = capiunto.create( { title = args.title, headerStyle = headerStyle, } ) :addImage( args.image, args.caption ) :addRow( 'Developer', args.dev ) :a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


optional params have a * at the end.

{{Infobox Language
| title = The title
| headerstyle = (defaults to background-color:grey) *
| image = [[File:Logo.svg|200px]] *
| caption = *
| dev = developer
| rel = release date | unknown
| dialects = K(3|4|5|6|7|9) *
| dialect = K(3|4|5|6|7|9) *
| ttype = temporal types | none
| table = yes | no tables
| proto = yes | no
| unicode = full|partial|no support
| implang = single language *
| implangs = multiple languages *
| plats = platforms
| oses = operating systems *
| license = license
| url = [https://website.com name]
| docs = [https://docs.com name]
| runurl = [https://run.com run online]
| influenced = influenced languages *
| infby = influenced by languages *
}}

local capiunto = require 'capiunto'

local p = {}

function p.main(frame)
	local args = frame:getParent().args
	local headerStyle
	if args.headerstyle and args.headerstyle ~= '' then
		headerStyle = string.format('background-color:%s;', args.headerstyle)
	else
		headerStyle = 'background-color:grey;'
	end
	local retval = capiunto.create( {
		title = args.title,
		headerStyle = headerStyle, 
	} )
	:addImage( args.image, args.caption )
	:addRow( 'Developer', args.dev )
	:addRow( 'Released', args.rel )
    :addRow( 'Released', args.rel )
    :addWikitext( '<hr>' )
	return retval
end

return p