Module:Nurse-kun: Difference between revisions

From Bibliotheca Anonoma
(Created page with "local p = {} function p.run() local capiunto = require 'capiunto' return capiunto.create( { title = tostring(mw.title.getCurrentTitle()) , top = 'Damaged Goods', top...")
 
mNo edit summary
 
Line 5: Line 5:
return capiunto.create( {
return capiunto.create( {
title = tostring(mw.title.getCurrentTitle()) ,
title = tostring(mw.title.getCurrentTitle()) ,
top = 'Damaged Goods',
topStyle = 'background:#cfc;',
topStyle = 'background:#cfc;',
bottom = 'Below text'
} )
} )
:addRow( 'A label', 'some data' )
:addRow( x, y )
end
end
 
return p
return p

Latest revision as of 03:17, 12 June 2017

Documentation for this module may be created at Module:Nurse-kun/doc

local p = {}
 
function p.run()
	local capiunto = require 'capiunto'
	return capiunto.create( {
		title = tostring(mw.title.getCurrentTitle()) ,
		topStyle = 'background:#cfc;',
	} )
:addRow( x, y )
end
  
return p