Emacs w3m 将突出显示区域导出为文本
当内容放置在表格中时,如何从 emacs-w3m 复制文本?目前,它还复制表格格式和边界。 w3m 可以导出为文本吗?
How can I copy text from emacs-w3m when the content is placed in a table? Currently, it copies the table-formatting and boundaries as well. Is there a export as text for w3m?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。w3m.el 使用 w3m 浏览器呈现网页,将文本放入 Emacs 缓冲区中。表格没有任何与其关联的附加格式,因此 Emacs 无法将它们与周围的文本区分开来。
唯一的解决方案是编写自己的代码来过滤掉表格格式和边界。没有预先制定的解决方案。
No. w3m.el uses the w3m browser to render web pages, dropping the text into an Emacs buffer. Tables do not have any additional formatting associated with them, so Emacs has no way of distinguishing them from surrounding text.
The only solution would be to write your own code to filter out the table formatting and boundaries. There is no pre-made solution.