Module:Make list: Difference between revisions

Jump to navigation Jump to search
2 bytes removed ,  20:31, 19 December 2020
m
no edit summary
(Created page with "local p = {} local text_util = require('Module:Text Utility') function p.split(splitstr, separator) local b = text_util.split(splitstr, separator) return b end function...")
 
mNo edit summary
 
Line 38: Line 38:
end
end


function p.makelinks(frame)
function p.makelist(frame)
   return p.parse(frame.args, 'ul')
   return p.parse(frame.args, 'ul')
end
end


function p.makelinksordered(frame)
function p.makelistordered(frame)
   return p.parse(frame.args, 'ol')
   return p.parse(frame.args, 'ol')
end
end

Navigation menu