All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Test Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:13, 17 December 2024 TheAstorPastor talk contribs created page Module:Date-calc (Created page with "local p = {} local months = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" } -- Function to format the date with ordinal suffix local function ordinal_suffix(day) local suffixes = {"th", "st", "nd", "rd"} local mod10 = day % 10 local mod100 = day % 100 if mod10 >= 1 and mod10 <= 3 and not (mod100 >= 11 and mod100 <= 13) then return day .. suffixes[mod10] end...")