In org-html-export-list-line, Org list elements use the expected "dt", "dd" and
"li" tags:
(insert (cond
((equal type "d")
(format "%s" desc-tag))
((and (equal type "o") counter)
(format "" counter))
(t
Carsten Dominik writes:
> Yes. Thank you for your report and correct analysis.
>
> This fix was already in the current development version, I guess you
> are using 7.01h or something similar? If you prefer to use released
> versions,
> expect this change in 7.02.
I saw the problem in plain 7.
In org-capture-place-item, excerpted here...
(defun org-capture-place-item ()
"Place the template as a new plain list item."
(let* ((txt (org-capture-get :template))
(target-entry-p (org-capture-get :target-entry-p))
(ind 0)
beg end)
(cond
((org-capt
Jan Böcker writes:
> Since I read the announcement this morning, I have been playing with
> MathJax. I found that when an HTML file on the local hard disk uses
> MathJax from the web, MathJax reverts to image fonts in Firefox (this is
> caused by a security feature of Firefox and mentioned in the M
Carsten Dominik writes:
> > When Firefox knows that your exported HTML file is really XHTML
> > (thanks to you changing `org-export-html-extension' to "xhtml"), you
> > can embed SVG into it. For example, here are PIC diagrams:
> >
> > http://home.
When Firefox knows that your exported HTML file is really XHTML
(thanks to you changing `org-export-html-extension' to "xhtml"), you
can embed SVG into it. For example, here are PIC diagrams:
http://home.avvanta.com/~sand/org-mode/embedded-pic.xhtml
Those are the first two diag
I switched my 'org-export-html-extension' variable from "html" to
"xhtml" and found that code examples are being formatted
incorrectly. I use Firefox, and when Firefox has (what it thinks is)
HTML-in-XML, it uses Standards Mode. This happens:
- if you get the document from a server and its MIM
The Emacs 23 org-table.el library (6.21b) includes a binding for
org-table-previous-field:
(org-defkey orgtbl-mode-map [(shift tab)]
(orgtbl-make-binding 'org-table-previous-field 104
[(shift tab)] [(tab)] "\C-i"))
On both my work and home machines, Shift+TAB
The org-yank function has special support for outline structures. But
if you want the same behavior for something other than yank, you're
out of luck. This patch (against 6.21b) moves the main functionality
into org-yank-generic, with yanking being just one particular entry
point. (I use this to