a gopher interface forked from the popular cgit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function filter_open(...)
|
|
buffer = ""
|
|
for i = 1, select("#", ...) do
|
|
buffer = buffer .. select(i, ...) .. " "
|
|
end
|
|
end
|
|
|
|
function filter_close()
|
|
html(buffer)
|
|
return 0
|
|
end
|
|
|
|
function filter_write(str)
|
|
buffer = buffer .. string.upper(str)
|
|
end
|
|
|
|
|
|
|