Skip to content

Commit eed3c5a

Browse files
committed
Add Luarocks package specification
1 parent c07a122 commit eed3c5a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

adf2md-0.1.0-1.rockspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package = "adf2md"
2+
version = "0.1.0-1"
3+
4+
source = {
5+
url = "git://github.com/quiqueporta/adf2md.git",
6+
tag = "v0.1.0"
7+
}
8+
9+
description = {
10+
summary = "Convert Atlassian Document Format (ADF) to Markdown",
11+
detailed = [[
12+
A Lua library to convert Atlassian Document Format (ADF) JSON
13+
documents to Markdown. Supports paragraphs, headings, lists,
14+
tables, code blocks, and inline formatting.
15+
]],
16+
homepage = "https://github.com/quiqueporta/adf2md",
17+
license = "MIT"
18+
}
19+
20+
dependencies = {
21+
"lua >= 5.1"
22+
}
23+
24+
build = {
25+
type = "builtin",
26+
modules = {
27+
adf2md = "src/adf2md.lua"
28+
}
29+
}

0 commit comments

Comments
 (0)