bugfix250107.1
全站通知:

模板:提取公众号数据

来自恋与深空WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

local p = {}

function p.getData(page)

  local success, content = call(mw.title.new(page).getContent
  if success then
     return content 
  else
     return "Error fetching content from" .. page
  end 

end

return p