Module:InfoboxforLigand
Documentation for this module may be created at Module:InfoboxforLigand/doc
local p = {}
function p.run(frame)
local capiunto = require 'capiunto'
return capiunto.create( {
top = 'Basic Information',
topStyle = 'background:#cfc;'
} )
:addRow('Molecular Formula', frame.args[1])
:addRow('Molecular Weight', frame.args[2])
:addRow('PubChem CID', frame.args[3])
:addRow('SMILES', frame.args[4])
end
return p