Hi Carsten, thanks a lot for the new version of org-mode, and all the
more for your personal mail. It is appreciated. Nice one to give css
classes to timestamps and tags. Gives one extra freedom.

found two bugs concerning new features, and one inconsistency:

* org-toggle-checkbox does not work, here's the fix (probably
  superfluous as it is so obvious):

in org.el:

(defun org-toggle-checkbox ()
  "Toggle the checkbox in the current line."
  (save-excursion
-    (if (org-at-item-checklet-p)
+    (if (org-at-item-checkbox-p)
        (replace-match (if (equal (match-string 0) "[_]") "[X]" "[_]") t t))))



* when the checkbox [_] is exported to html as [<sub>]</sub>, most
  probably due to conflict with org-export-html-convert-sub-super

don't know how to fix, too difficult for me.

* timestamps and tags are exported to the toc, even though
  org-export-with-timestamps is nil, as is org-export-with-tags

Greetings,

Niels.


_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to