emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-orgmode] Release of org-mode 4.30


From: nielsgiesen
Subject: Re: [Emacs-orgmode] Release of org-mode 4.30
Date: Fri, 19 May 2006 17:06:16 +0200

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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]