Page history
3 May 2023
imported>YungCyraxxAlt
no edit summary
imported>YungCyraxxAlt
no edit summary
+14,830
imported>YungCyraxxAlt
Replaced content with "-- This module implements the Infobox template. local p = {} function p.infobox(frame) local args = frame.args local title = args.title or '' local image = args.image or '' local caption = args.caption or '' local body = args.body or '' local output = '' output = output .. '<table class="infobox">\n' output = output .. '<caption>' .. title .. '</caption>\n' if image ~= '' then output = output .. '<tr>\n<td colspan="2"..."
imported>YungCyraxxAlt
Replaced content with "-- This module implements the Infobox template. local p = {} function p.infobox(frame) local args = frame.args local title = args.title or '' local image = args.image or '' local caption = args.caption or '' local body = args.body or '' local output = '' output = output .. '<table class="infobox">\n' output = output .. '<caption>' .. title .. '</caption>\n' if image ~= '' then output = output .. '<tr>\n<td colspan="2"..."
−19,782
7 February 2023
imported>JonasCuomo
Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..."
imported>JonasCuomo
Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..."
+20,533