mirror of
https://github.com/TangentFoxy/markdown.lua.git
synced 2025-07-27 17:42:16 +00:00
21 lines
451 B
Lua
21 lines
451 B
Lua
package = "Markdown"
|
|
version = "scm-1"
|
|
source = {
|
|
url = "git://github.com/mpeterv/markdown"
|
|
}
|
|
description = {
|
|
summary = "Markdown text-to-html markup system.",
|
|
detailed = "A pure-lua implementation of the Markdown text-to-html markup system.",
|
|
license = "MIT/X11",
|
|
homepage = "https://github.com/mpeterv/markdown"
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1"
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
markdown = "markdown.lua"
|
|
}
|
|
}
|