我想将shell命令的输出转换为HTML,无论命令打印的是什么 我已经尝试过使用txt2html和pandoc,但是第一个不会保留大量的行,即使使用--nounhipenation param,还有格式化标签,例如< h1>某些方面。
使用txt2html输出:
TEST: SimpleTest
-----------------------------------
All test completed in 1ms
Warning: No asserts run!
All assert(s) passed.
-----------------------------------
变为:
<h1>TEST: SimpleTest</h1>
<p> All test completed in 1ms<br/>
Warning: No asserts run!<br/>
All assert(s) passed.
</p><hr/>
注意丢失的超量和虚假的&lt; h1&gt; &LT; / h1&gt;由于某种原因&lt; hr /&gt;标签
我希望输出类似的内容:
<p>TEST: SimpleTest<br/>
-----------------------------------<br/>
All test completed in 1ms<br/>
Warning: No asserts run!<br/>
All assert(s) passed.
-----------------------------------<br/>
</p>