Module:Good article topics: Revision history


For any version listed below, click on its date to view it. For more help, see Help:Page history and Help:Edit summary. (cur) = difference from current version, (prev) = difference from preceding version,  m = minor edit, → = section edit, ← = automatic edit summary

5 November 2024

  • curprev 13:5613:56, 5 November 2024Muskit Gergous talk contribs 446 bytes +446 Created page with "-- This module implements {{GA/Topic}}. local p = {} function p.main(frame) local topic = frame:getParent().args[1] if not topic then return '' end topic = topic:match('^%s*(.-)%s*$') -- Trim whitespace local ret if topic ~= '' then ret = p._main(topic) end ret = ret or '' return ret end function p._main(topic) topic = topic:lower() local data = mw.loadData('Module:Good article topics/data') return data[topic] end return p"