mirror of
https://github.com/mpeterv/markdown.git
synced 2025-01-14 05:04:19 +00:00
22 lines
484 B
Lua
22 lines
484 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, < 5.4"
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
markdown = "markdown.lua"
|
|
},
|
|
copy_directories = {}
|
|
}
|