From Wikipedia, the free encyclopedia
p={}
function p.incrementor (frame)
local tbl_str = frame.args[1];
local count = 1;
while (tbl_str:find ('row_count')) do
tbl = tbl_str:gsub ('row_count', count, 1);
count = count + 1;
end
return frame:preprocess (tbl_str);
end
return p;