On Sun, 29 Aug 2010 14:52:10 -0600, "Eric Schulte" wrote: > > Hi Eric, > > An easy fix may be using the `org-mime-html-hook' to post-process the > html, the following (untested) should be sufficient. > > --8<---------------cut here---------------start------------->8--- > (add-hook 'org-mime-html-hook > (lambda () > (replace-regexp > (regexp-quote "X") > " "))) > --8<---------------cut here---------------end--------------->8--- > > To me, this seems easier than having an email-specific export target. Yes, this is probably the best approach (and thanks for the actual elisp code which is nice and succinct!). I do still wonder at the need for the extra level of complexity introduced by the visibility attribute, especially given that the checkboxes only line up if none of them is of the type [-]... Anyway, I've put this code in my config! Thanks again. eric