local etlua = require"etlua" local form = etlua.compile[[ Yokoka’s Quest Character Profile Creator <%= data %>


Based on the character profiles in the webcomic Yokoka’s Quest by Chris Hyacinth R. Assets shared by the author on the webcomic’s forums. ]] return { desc = "Creates Yokoka’s quest-style personal status page", run = function(fcgi) fcgi.print("Content-Type: text/html; charset=utf-8\r\n\r\n") local data = fcgi.post() fcgi.print(form({data = data})) end }