Hi! I just noticed that org-emphasize (when called via C-c C-x C-f) returns an error. In org.el:3501 there seems to be a problem when 'org-emphasis-alist' contains empty strings for html tags; I in fact made the error go away by adding html tags for the org-verbatim entry of this list (org.el:2255):
(defcustom org-emphasis-alist `(("*" bold "<b>" "</b>") ("/" italic "<i>" "</i>") ("_" underline "<u>" "</u>") ("=" org-code "<code>" "</code>" verbatim) - ("~" org-verbatim "" "" verbatim) + ("~" org-verbatim "<pre>" "</pre>" verbatim) ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t)) "<del>" "</del>") ) But I guess this is the wrong place to fix it ... :-| --- \\/ladi _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode