rename of htmlparser

This commit is contained in:
Wouter Scherphof 2013-03-19 20:07:52 +01:00
parent 72040db2a6
commit 94a1d8259a

View File

@ -1,10 +1,10 @@
local HtmlParser = require("HtmlParser")
local htmlparser = require("htmlparser")
local io = require("io")
local file = io.input("./test.html")
local text = io.read("*a") file:close()
local root = HtmlParser.parse(text)
local root = htmlparser.parse(text)
-- print the tree
local function p(n)