Module:Process entire Ask query with format plainlist

From Livermore History Collaborative
Revision as of 22:00, 3 December 2025 by Bmcfann (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Process entire Ask query with format plainlist/doc

local p = {}

function p.processData(frame)
    local pages_only_arg = frame.args["pages_only"]
    local full_query_arg = frame.args["full_query"]

    --local vartype = type(plainlistString)
    return "<ul><li>" .. pages_only_arg .. "</li><li>" .. full_query_arg .. "</li></ul>"

 
    
    
end

return p