你知道 htmlagilitypack 是如何处理属性最小化的吗?例如:
<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>
控件是什么节点类型(在上面的例子中)?