轻量级HTML解析器转换为格式化文本?

时间:2009-07-26 13:26:21

标签: c++ html text

我发现轻量级HTML Parser用于翻译格式化文本。例如:

<html>
<body>
<a href="http://www.google.com/">Google</a>
<img src="http://images.google.com/intl/en_us/images/logos/images_logo.gif" alt="Google image logo" />
<ol>
<li>first</li>
<li>second</li>
</ol>
<ul>
<li>apple</li>
<li>orange</li>
</ul>
<table><tr><td>cell a</td><td>&nbsp;</td><td>cell b</td></tr><tr><td>cell c</td><td>cell d</td><td>cell e</td></tr><table>

</body>
</html>

成:

Google (link:http://www.google.com/) (img:Google images logo)

1. first
2. second

- apple
- orange

cell a(tab) (tab)cell b
cell c(tab)cell d(tab)cell e

使用xml / xslt库对此来说太过分了。

2 个答案:

答案 0 :(得分:1)

您可以查看开源文本浏览器的来源(f.e. l​​ynx)。

答案 1 :(得分:0)

我终于为这个问题选择了htmlcxx。它足够轻便。