Module:Listbox: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
mNo edit summary
(ok so these aren't working because these functions aren't included in this version of Scribunto. Later versions require later versions of MW. So I guess I'll have to scrap this project for now.)
Line 2: Line 2:


function p.list(frame)
function p.list(frame)
   local cc = mw.getCurrentFrame():extensionTag(
   local cc = frame:callParserFunction( '#categorytree', 'Hyrule Warriors Characters' )
    'categorytree', 'Hyrule Warriors Characters',
    {mode = m, hideroot='on', hideprefix='always', showcount='on'}
  )
   return 'hmm'
   return 'hmm'
end
end


return p
return p

Revision as of 00:11, June 30, 2014

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

local p = {}

function p.list(frame)
  local cc = frame:callParserFunction( '#categorytree', 'Hyrule Warriors Characters' )
  return 'hmm'
end

return p