| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff 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 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments