【发布时间】:2014-08-29 02:31:49
【问题描述】:
我如何转换这样一段html的语法
<div>
some text
<br/>
goes in here
<br/>
with only br tags
<br/>
to separate it
<br/>
</div>
到这里
<div>
<p>some text</p>
<p>goes in here</p>
<p>with only br tags</p>
<p>to separate it</p>
</div>
在 c# 中使用 HTML 敏捷包?
【问题讨论】:
标签: c# html html-agility-pack