3

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?

Drew
  • 29,895
  • 7
  • 74
  • 104
Kabira K
  • 1,916
  • 2
  • 22
  • 38

1 Answers1

0

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.

Tyler
  • 9,872
  • 2
  • 33
  • 57