FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Merge pull request #35 from wscherphof/v0.3.2 · lineCode/lua-htmlparser@a8b5f6f · GitHub

Commit a8b5f6f

Browse files
committed
Merge pull request msva#35 from wscherphof/v0.3.2
Rockspec for new version
2 parents 63cbbee + 6ed477a commit a8b5f6f

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

‎htmlparser-0.3.2-1.rockspec‎

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package = "htmlparser"
2+
version = "0.3.2-1"
3+
source = {
4+
url = "git://github.com/wscherphof/lua-htmlparser.git",
5+
branch = "v0.3.2"
6+
}
7+
description = {
8+
summary = "Parse HTML text into a tree of elements with selectors",
9+
detailed = [[
10+
Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand.
11+
]],
12+
homepage = "http://wscherphof.github.io/lua-htmlparser/",
13+
license = "LGPL+"
14+
}
15+
dependencies = {
16+
"lua >= 5.2",
17+
"set >= 0.2",
18+
"lunitx >= 0.6"
19+
}
20+
build = {
21+
type = "builtin",
22+
copy_directories = {"doc", "tst"},
23+
modules = {
24+
htmlparser = "src/htmlparser.lua",
25+
["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua",
26+
["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua"
27+
}
28+
}

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL