如何自动标记 ascii-art 表?
我有一个带有表格的纯文本文件:
http://uucode.com/tmp/20110913/ vim-index.txt
(或在 vim 中输入“:help index”)
我想将表格转换为计算机友好的形式。例如,转换为 HTML 或 Excel。
有什么建议如何自动生成吗?也许一些轻量级标记工具可以识别这样的表?或者可能有一些具有有用算法的研究论文?
I have a plain text file with tables:
http://uucode.com/tmp/20110913/vim-index.txt
(or type ":help index" in vim)
I want to convert the table into a computer-friendly form. For example, into HTML or into Excel.
Any suggestion how to make it automatically? Maybe some lightweight markup tool can recognize such tables? Or probably there are some research papers with useful algorithms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
插件“vimwiki:Vim 的个人 Wiki”( http://www.vim。 org/scripts/script.php?script_id=2226 )为其 wiki 页面定义了表格语法:
并且它提供了从文本转换为 html 的命令:
也许您可以使用一些正则表达式将表格转换为这种格式,然后使用这个插件将其转换为HTML。
The plugin "vimwiki : Personal Wiki for Vim" ( http://www.vim.org/scripts/script.php?script_id=2226 ) defines a table syntax for its wiki pages:
And it provides a command to convert from text to html:
Maybe you could use some regular expressions to convert your tables to this format, and then use this plugin to convert it to HTML.