This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/stead/para.lua
2010-06-23 13:02:36 +00:00

9 lines
253 B
Lua

stead.fmt = stead.hook(stead.fmt, function(f, ...)
local r = f(unpack(arg))
if type(r) == 'string' and stead.tick then
r = r:gsub('\n([^\n])', '<&para;>%1'):gsub('<&para;>', '\n'..txtnb(' '));
r = r:gsub('^',txtnb(' '))
end
return r;
end)