Open main menu

Changes

Module:StringHelpers

31 bytes removed, 16:24, 12 April 2020
no edit summary
function p.getParagraphFromQuestion(param)
dashIndex = string.find(param.args[1], '-', 1, true);
if (dashIndex ~= nil)
then
return "complex question"
else
return "simple question"
end
end
 
return p