Module:SEO: Difference between revisions

From NOISZ Wiki
(Created page with "local seo = {} function seo.set( argTable ) mw.ext.seo.set( argTable ) end function seo.setStatic() local args = frame:getParent().args mw.ext.seo.set{ image = args.image1 } end return seo")
 
mNo edit summary
Line 6: Line 6:




function seo.setStatic()
function seo.setStatic(frame)
   local args = frame:getParent().args
   local args = frame:getParent().args
   mw.ext.seo.set{
   mw.ext.seo.set{

Revision as of 18:17, 5 July 2025

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

local seo = {}

function seo.set( argTable )
  mw.ext.seo.set( argTable )
end


function seo.setStatic(frame)
  local args = frame:getParent().args
  mw.ext.seo.set{
    image = args.image1
  }
end

return seo