1

I have a file in (say) odt format that contains hyperlinks, like this, and I want to edit the content of this file using emacs-org. I can't just copy paste the content from *odt to *org, the links don't persist. What, then?

PS: there is a post whose title seems to match my question, but the answer does not.

1 Answers1

0

I would use pandoc to convert the document from odt to org, and then I'd edit the newly created org document.

pandoc -r odt -w org example.odt > example.org
emacs example.org       # or
emacsclient example.org # if you have server-mode setup
g-gundam
  • 1,261
  • 1
  • 4
  • 14