/tinyhtml

HTML解析器

Primary LanguageC++

	This is a simple html file parser.

Changes:

Version 0.1.0:
	The tinyhtml now only parses the simply html file, the complex html file it cann't parses. the simply html file like this
	"
	<html>

	<head>
	<title>我的第一个 HTML 页面</title>
	</head>

	<body>
	<p>body 元素的内容会显示在浏览器中。</p>
	<p>title 元素的内容会显示在浏览器的标题栏中。</p>
	</body>

	</html>
	"