mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 03:17:16 +00:00
8 lines
161 B
Lua
8 lines
161 B
Lua
function ByteStringWriter (doc, opts)
|
|
local buffer = {}
|
|
for i=0, 255 do
|
|
table.insert(buffer, string.char(i))
|
|
end
|
|
return table.concat(buffer, '')
|
|
end
|