没有*任何*格式的文本到HTML转换

时间:2014-02-03 23:11:55

标签: shell text-to-html

我想将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>

1 个答案:

答案 0 :(得分:0)

我以前做过这件事,以下对我有用。

http://2partsmagic.com/util/text2html.jsp