Module:Test: Difference between revisions

From Resonite Wiki
mNo edit summary
mNo edit summary
Line 7: Line 7:
  local protofluxContainer = mw.html.create( 'table' )
  local protofluxContainer = mw.html.create( 'table' )
   
   
protofluxContainer
protofluxContainer
   :tag( 'tr' )
   :tag( 'tr' )
  :tag( 'th' )
  :tag( 'th' )
  :wikitext(frame.args.Name);
    :wikitext(frame.args.Name);


  --for k,v in pairs( inputsDecode ) do
  for k,v in pairs( inputsDecode ) do
-- protofluxContainer = protofluxContainer:wikitext( k .. '=' .. v );
  protofluxContainer
  --end
  :tag( 'tr' )
-- for k,v in pairs( outputsDecode ) do
    :tag ('td' )
--  protofluxContainer = protofluxContainer:wikitext( k .. '=' .. v );
    :wikitext( k .. '=' .. v );
-- end
  end
for k,v in pairs( outputsDecode ) do
    protofluxContainer
  :tag( 'tr' )
    :tag ('td' )
    :wikitext( k .. '=' .. v );
end
  return tostring( protofluxContainer );
  return tostring( protofluxContainer );
end
end


return p
return p

Revision as of 02:32, 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 protofluxContainer = mw.html.create( 'table' )
 
 protofluxContainer
  :tag( 'tr' )
   :tag( 'th' )
    :wikitext(frame.args.Name);

 for k,v in pairs( inputsDecode ) do
  protofluxContainer
   :tag( 'tr' )
    :tag ('td' )
     :wikitext( k .. '=' .. v );
 end
 for k,v in pairs( outputsDecode ) do
    protofluxContainer
   :tag( 'tr' )
    :tag ('td' )
     :wikitext( k .. '=' .. v );
 end
 return tostring( protofluxContainer );
end

return p