Module:ChapterVariables

From JoJo's Bizarre Encyclopedia - JoJo Wiki
Revision as of 20:14, 30 December 2022 by HudgynS (talk | contribs)
Jump to navigation Jump to search

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

local p = {}

function p.main( frame )
    local chapterVariablesText = frame.args[1]
    local chapterVariablesData = mw.loadData( 'Module:ChapterVariables/data' )
    return chapterVariablesData[chapterVariablesText] or chapterVariablesText or ""
end

function p.jptext( frame )
    local chapterVariablesText = frame.args[1]
    local chapterVariablesData = mw.loadData( 'Module:ChapterVariables/dataJ' )
    local chapterVariablesReturn = frame:preprocess(chapterVariablesData[chapterVariablesText])
    return chapterVariablesReturn or chapterVariablesText or ""
end

function p.romaji( frame )
    local chapterVariablesText = frame.args[1]
    local chapterVariablesData = mw.loadData( 'Module:ChapterVariables/dataR' )
    return chapterVariablesData[chapterVariablesText] or chapterVariablesText or ""
end

return p