זוהי תצוגה משולבת של כל סוגי היומנים הזמינים במכביפדיה. ניתן לצמצם את התצוגה על־ידי בחירת סוג היומן, שם המשתמש (תלוי־רישיות) או הדף המושפע (גם כן תלוי־רישיות).
- 13:38, 24 באוקטובר 2025 Kosh שיחה תרומות יצר את הדף יחידה:AgeBetween (יצירת דף עם התוכן "local p = {} -- Calculates precise age between two dates (YYYY-MM-DD) function p.ageBetween(frame) local dob = frame.args[1] local event = frame.args[2] if not dob or not event then return "" end local y1, m1, d1 = dob:match("(%d+)%-(%d+)%-(%d+)") local y2, m2, d2 = event:match("(%d+)%-(%d+)%-(%d+)") if not (y1 and y2) then return "" end y1, m1, d1 = tonumber(y1), tonumber(m1), tonumber(d1) y2, m2, d2 = tonumber(y2), tonumber(m2), tonumber(d2)...")