You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {} --p stands for package
p.file_type_mapping = {
["py"] = "python",
["json"] = "json",
["md"] = "markdown",
["yml"] = "yaml",
["yaml"] = "yaml",
}
function p.code(frame)
local url = frame.args['url']
local lang = frame.args['lang']
if (lang == "") then lang = nil end
local show_line_numbers = frame.args['show_line_numbers']
if (show_line_numbers == nil or show_line_numbers == "" or show_line_numbers == "0" or show_line_numbers == "false") then show_line_numbers = false
else show_line_numbers = true end
local highlight = frame.args['highlight']
local render_markdown = frame.args['render_markdown']
if (render_markdown == nil or render_markdown == "") then render_markdown = true end
000
1:0
Template used on this page:
Return to Module:Viewer/Github.