From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Day Subject: Re: collaborating between org-mode and MS Word users Date: Mon, 31 Dec 2012 11:26:15 +1100 Message-ID: References: <57278.46.239.234.92.1356615218.squirrel@www.hafro.is> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44339) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TpTCz-0000kl-JG for emacs-orgmode@gnu.org; Sun, 30 Dec 2012 19:26:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TpTCy-0008GY-BO for emacs-orgmode@gnu.org; Sun, 30 Dec 2012 19:26:25 -0500 Received: from mail-da0-f43.google.com ([209.85.210.43]:63841) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TpTCy-0008GS-4V for emacs-orgmode@gnu.org; Sun, 30 Dec 2012 19:26:24 -0500 Received: by mail-da0-f43.google.com with SMTP id u36so5545610dak.16 for ; Sun, 30 Dec 2012 16:26:23 -0800 (PST) In-Reply-To: <57278.46.239.234.92.1356615218.squirrel@www.hafro.is> (Julian Burgos's message of "Thu, 27 Dec 2012 13:33:38 -0000 (GMT)") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Julian Burgos Cc: emacs-orgmode@gnu.org "Julian Burgos" writes: > - Is there a better way to have a non-org mode use to edit/correct a > org-mode document and then bring back the corrections to an org-mode > document? If MS Word users can't tolerate plain text org-mode files then I can't think of many shortcuts. This works well when bringing a docx back into emacs: #+begin_src emacs-lisp (add-to-list 'auto-mode-alist '("\\.docx\\'" . docx2txt)) (defun docx2txt () "Run docx2txt on the entire buffer." (shell-command-on-region (point-min) (point-max) "docx2txt.pl" t t)) #+end_src > - What is the best way to compare org-mode nodes/branches (like in the > above example the Version 1 and Version 2 nodes?). Can I use ediff within > an org-mode file? Or should I keep separate versions on separate > documents? ediff-regions-linewise might get the job done. Within that process, org-mark-subtree and C-u C-c C-w to quickly jump to the relevant subtrees are great speed ups. More generally, re-builder is a godsend for working out the regular back and forth transformations you'll be doing.