如何自动标记 ascii-art 表?

发布于 2024-12-04 13:57:57 字数 289 浏览 1 评论 0原文

我有一个带有表格的纯文本文件:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你鎻心 2024-12-11 13:57:57

插件“vimwiki:Vim 的个人 Wiki”( http://www.vim。 org/scripts/script.php?script_id=2226 )为其 wiki 页面定义了表格语法:

 | Year | Temperature (low) | Temperature (high) |
 |------+-------------------+--------------------|
 | 1900 | -10               | 25                 |
 | 1910 | -15               | 30                 |
 | 1920 | -10               | 32                 |
 | 1930 | _N/A_             | _N/A_              |
 | 1940 | -2                | 40                 |
>

In HTML the following part >
 | Year | Temperature (low) | Temperature (high) |
 |------+-------------------+--------------------|
>
is higlighted as a table header.

并且它提供了从文本转换为 html 的命令:

*:Vimwiki2HTML*
    Convert current wiki page to 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:

 | Year | Temperature (low) | Temperature (high) |
 |------+-------------------+--------------------|
 | 1900 | -10               | 25                 |
 | 1910 | -15               | 30                 |
 | 1920 | -10               | 32                 |
 | 1930 | _N/A_             | _N/A_              |
 | 1940 | -2                | 40                 |
>

In HTML the following part >
 | Year | Temperature (low) | Temperature (high) |
 |------+-------------------+--------------------|
>
is higlighted as a table header.

And it provides a command to convert from text to html:

*:Vimwiki2HTML*
    Convert current wiki page 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文