将textlinks转换为html超链接

时间:2012-09-17 17:45:24

标签: html text

我正在尝试创建一个脚本,其中搜索中找到的所有文件都将转换为href-links并重定向到html文件。

说我正在搜索“单词”,它会给出以下命中:

/archive/here/is/the/first/found/file1.txt
/archive/here/is/the/second/found/file2.txt
/archive/here/is/the/third/found/file3.txt

我想重定向这些匹配并转换为包含以下内容的文件“hits.html”

<a href="/archive/here/is/the/first/found/file1.txt">file1.txt</a>
<a href="/archive/here/is/the/second/found/file2.txt">file2.txt</a>
<a href="/archive/here/is/the/third/found/file3.txt">file3.txt</a>

可以这样做(以一种不太复杂的方式)吗?

我已经尝试过latex2html,但一直无法做到。

0 个答案:

没有答案