Actions

Module

Breadcrumbs: Revision history

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.

9 April 2025

  • curprev 21:5921:59, 9 April 2025 Operator talk contribs 1,388 bytes +1,388 Created page with "local p = {} function p.render(frame) local title = mw.title.getCurrentTitle().text -- Fetch breadcrumb rows for the current page local rows = mw.ext.externalData.getExternalData({ source = "externaldb", from = "site_breadcrumbs", where = "page_title='" .. title:gsub("'", "''") .. "'", data = "level=level,label=label,url=url", }) if not rows or #rows == 0 then return '' end -- Sort by breadcrumb level table.sort(rows, function(a, b)..."