Mon, 06 Jul 2020 12:16:04 -0500
Add missing error handler loading
local markdown_it={} local io = require('io') local os = require('os') function markdown_it.markdown(str, env) -- 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 = string.format("node '%s/markdown_it.js' '%s'", env.paths.lgen_location, tmpname) io.stdout:write('Executing ' .. cmd .. '\n') h = io.popen(cmd, 'r') result = h:read("*a") h:close() file:close() return result end return markdown_it