Module:Test: Difference between revisions

From Resonite Wiki
mNo edit summary
mNo edit summary
Line 4: Line 4:
  local inputsDecode = mw.text.jsonDecode( frame.args.Inputs );
  local inputsDecode = mw.text.jsonDecode( frame.args.Inputs );
  local outputsDecode = mw.text.jsonDecode( frame.args.Outputs );
  local outputsDecode = mw.text.jsonDecode( frame.args.Outputs );
  local div = mw.html.create( 'figure' );
 
  local table = mw.html.create( 'table' );
table:addClass( 'infobox' );
 
  for k,v in pairs(inputsDecode) do
  for k,v in pairs(inputsDecode) do
   div:wikitext( k .. '=' .. v );
   table:wikitext( k .. '=' .. v );
  end
  end
  for k,v in pairs(outputsDecode) do
  for k,v in pairs(outputsDecode) do
   div:wikitext( k .. '=' .. v );
   table:wikitext( k .. '=' .. v );
  end
  end
  return tostring( div );
  return tostring( div );

Revision as of 02:05, 13 January 2024

Documentation for this module may be created at Module:Test/doc

local p = {}

function p.ProtoFlux( frame )
 local inputsDecode = mw.text.jsonDecode( frame.args.Inputs );
 local outputsDecode = mw.text.jsonDecode( frame.args.Outputs );

 local table = mw.html.create( 'table' );
 table:addClass( 'infobox' );

 for k,v in pairs(inputsDecode) do
  table:wikitext( k .. '=' .. v );
 end
 for k,v in pairs(outputsDecode) do
  table:wikitext( k .. '=' .. v );
 end
 return tostring( div );
end

return p