HtmlAgilityPack和属性最小化

时间:2013-02-05 20:22:40

标签: c# html html-agility-pack

你知道htmlagilitypack如何处理属性最小化。 E.g:

<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

控件被最小化,并且在正确的xhmtl中应该写入:

<audio controls="controls">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

将控制哪个节点类型(在上面的示例中为ofc)?

1 个答案:

答案 0 :(得分:1)

Screenshot

从上面的屏幕截图中,您可以看到“controls”属性的类型是“HtmlAgilityPack.HtmlAttribute”,其值是空字符串。