From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike McLean Subject: Question About New Exporter Date: Mon, 20 Aug 2012 06:49:37 -0400 Message-ID: <29B7FC2F-B771-4F10-931C-FE7E86A05D93@pobox.com> Mime-Version: 1.0 (Mac OS X Mail 6.0 \(1485\)) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3PYE-0007HR-C2 for Emacs-orgmode@gnu.org; Mon, 20 Aug 2012 06:49:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T3PYD-0003Si-9W for Emacs-orgmode@gnu.org; Mon, 20 Aug 2012 06:49:42 -0400 Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:53766 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3PYD-0003RX-6N for Emacs-orgmode@gnu.org; Mon, 20 Aug 2012 06:49:41 -0400 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id C825F8F6E for ; Mon, 20 Aug 2012 06:49:38 -0400 (EDT) Received: from a-pb-sasl-quonix.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id B966A8F6D for ; Mon, 20 Aug 2012 06:49:38 -0400 (EDT) Received: from macxmclean.mclean (unknown [24.129.39.25]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 5D94A8F6C for ; Mon, 20 Aug 2012 06:49:38 -0400 (EDT) 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: Emacs-orgmode@gnu.org Hello I use Org mode quite a bit to: a) Export raw HTML that I use on my corporate Sharepoint site (currently = via copy/paste) for Wiki entries, Blog posts, etc. b) Export HTML to a browser that I copy/paste into corporate Outlook for = Mac client for formatted email c) PDF documents via LaTeX On point (c), I have 3 custom LaTeX classes (each based off of and = ultimately including the memoir class). These classes are similar in = function and exist for format a corporate document via corporate = branding, personal documents in a way that pleases me, and documents for = my non-profit volunteer efforts in a style that match that branding. For all 3 I use the LaTeX biblatex-chicago package, and to help the tex = build process use latexmk. I am on a Mac so I use xelatex instead of pdflatex to get system fonts, = Open Type fonts, etc. My Org mode LaTeX build is: (setq texcmd "latexmk -gg -f -shell-escape -xelatex -pdf %f") (setq org-latex-to-pdf-process (list texcmd)) Given all of that; what do I need to be wary of before I switch to the = e-html and e-latex exporters? Are they far enough along that I should be able to just swap and have = every thing =93just work=94 or =93mostly work=94 ? Thanks