Module:User:Victar/category-list

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of Victar, for their own experimentation. Items in this module may be added and removed at Victar's discretion; do not rely on this module's stability.


local export = {}

function export.show(frame)
	
	local pages = mw.getCurrentFrame():callParserFunction{
		name = "#tag",
		args = {
			"DynamicPageList",
			"category=Old Persian lemmas\n" ..
			"namespace=0\n" ..
			"ordermethod=key\n" ..
			"order=ascending"
		}
	}
	
	return mw.text.unstrip(frame:preprocess('{{Category:Old Persian lemmas}}'))
	
end