Skip to content

Instantly share code, notes, and snippets.

@balaam
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save balaam/64f5d727cf0ce8b8918d to your computer and use it in GitHub Desktop.

Select an option

Save balaam/64f5d727cf0ce8b8918d to your computer and use it in GitHub Desktop.
Hackery for pandoc
s = "![Encounter tileset.](./collision_tileset.png)\\"
s = string.gsub(s, "!%[(.-)]%s*%((.-)%)%s*\\",
function(comment, path)
local ret = "![%s](%s)\\\n\\begin{center} \\emph{%s} \\end{center}\n\n"
return string.format(ret, comment, path, comment)
end)
print(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment