pandoc.lua

Sun, 06 Sep 2020 22:12:52 +0300

author
Tuomo Valkonen <tuomov@iki.fi>
date
Sun, 06 Sep 2020 22:12:52 +0300
changeset 35
2f927eae429b
parent 16
e377590e9b19
child 39
5fc5f93a8cad
permissions
-rw-r--r--

Don't auto-create directories that will be empty

local pandoc={}

local io = require('io')
local os = require('os')

function pandoc.pandoc(str)
    -- Lua doesn't have bidirectional pipes without the posix library.
    -- Keep things and compatible and use temporary files.
    tmpname = os.tmpname()
    file = io.open(tmpname, 'w')
    file:write(str)
    cmd = 'pandoc --from=markdown --to=html "' .. tmpname .. '"'
    io.stdout:write('Executing ' .. cmd .. '\n')
    h = io.popen(cmd, 'r')
    result = h:read("*a")
    h:close()
    file:close()
    return result
end

return pandoc

mercurial