- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Module:View
Jump to navigation
Jump to search
Documentation for this module may be created at Module:View/doc
---
-- Wrap (args, frame?) -> wikitext function into a frame -> wikitext function.
--
-- [[Category:Todo]]: actually should provide a react-like view library.
--
local _ = require('Module:Core')
local DummyFrame = {}
function DummyFrame:preprocess(x)
return x
end
return function(render, test)
return {
render = function(frame)
return render(frame and _.getTemplateArgs(frame) or {}, frame)
end,
test = function()
return render(test, DummyFrame)
end,
}
end