markdown
markdown copied to clipboard
An implementation of the Markdown text-to-html markup system in pure Lua.
Issue in markdown.lua line 124: ``` setfenv(1, M) ``` The function is not available in following versions. Did not manage to have a more detailed look yet. Maybe I find...
I modified one line to get my ``` code ``` markdown sections to work `text = protect(text):gsub("```(.-)```","%1") `
In markdown, an _ is something special ... One cannot just scan for every _ in a text and emphasize every text between _ (underscores). In many program languages, _...
I don't know how maintained this project is, or if it's even desirable, but I think it would be cool if the test suite used was the commonmark test suite:...
With this rockspec change, this library installs and passes tests in Lua 5.4.
Many Wikipedia links for example, end in a closing parenthesis. This parser cuts off the end of the link and discards the true parenthesis marking the end of a link....