Toggle menu
14
236
69
27.3K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Path: Revision history

From Kenshi Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 February 2025

  • curprev 04:0904:09, 17 February 2025 Prd talk contribs 2,584 bytes +2,584 Created page with "function split_path (path) local parts = {} local len = 0 for token in path:gmatch("[^/]+") do len = len + 1 parts[len] = token end return parts, len end function get_abs_path (current, page) local tbl_i, len_i = split_path(page) local tbl_o local len_o if tbl_i[1] == '.' or tbl_i[1] == '..' then tbl_o, len_o = split_path(current) else tbl_i[1] = tbl_i[1]:gsub('^([^:]?)([^:]*)(:?)(.?)', function (s1, s2, s3, s4) if s3 == '' then return s1:upper..."