本网站正在建设中(~ ̄▽ ̄)~

  • 你好~!欢迎来到中文歌声合成个人收集站-VCPedia.cn!
  • 若发现页面信息有误投稿至本站,请联系管理员。

Module:GetPageCode

VCPedia.cn ——关于中文歌声合成的一切。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. return function(name)
  2. local redirect, nextv = nil, nil
  3. repeat
  4. nextv =(nextv or mw.title.new(name)).redirectTarget
  5. if nextv then redirect = nextv end
  6. until not nextv
  7. local code = (redirect or mw.title.new(name)):getContent()
  8. return code
  9. end