Table of contents position in HTML export

2021-10-04 Thread Kodi Arfer
When I export this file to HTML with `emacs -Q` and Org 9.5 #+TITLE: example document text before headline * headline! after headline the table of contents appears before "text before headline", although the manual says "Org normally inserts the table of contents directly bef

Re: How is the return value of `org-babel-execute:FOO` interpreted?

2021-10-03 Thread Kodi Arfer
On 2021 Oct 03 Sun 8:39:37 AM -0400, Ihor Radchenko wrote: Ihor Radchenko writes: Kodi Arfer writes: Are you sure that you have :file parameter in the source block you tried to execute? Yes, this is my code block: #+begin_src hy :file g/foo.png (plt.scatter [1 2 3] [4 5 -9]) #+end_src

Re: How is the return value of `org-babel-execute:FOO` interpreted?

2021-10-03 Thread Kodi Arfer
On 2021 Oct 03 Sun 5:38:10 AM -0400, Ihor Radchenko wrote: Kodi Arfer writes: I have an `org-babel-execute` function for the Hy programming language that seems to have partly broken when I upgraded Org (from 9.1.14 to 9.4.6). … I just tested using ob-gnuplot and :file link is correctly

How is the return value of `org-babel-execute:FOO` interpreted?

2021-10-02 Thread Kodi Arfer
I have an `org-babel-execute` function for the Hy programming language that seems to have partly broken when I upgraded Org (from 9.1.14 to 9.4.6). It has code to write a plot to a file when a `:file` argument is given to the code block. It returns `nil` in this case, and previously, Org would

How is the return value of `org-babel-execute:FOO` interpreted?

2021-10-02 Thread Kodi Arfer
I have an `org-babel-execute` function for the Hy programming language that seems to have partly broken when I upgraded Org (from 9.1.14 to 9.4.6). It has code to write a plot to a file when a `:file` argument is given to the code block. It returns `nil` in this case, and previously, Org would

[O] Automatically save the archive file after org-archive-subtree

2018-10-06 Thread Kodi Arfer
As of https://code.orgmode.org/bzg/org-mode/commit/b186d1d7236c0dc397eadeb004c9a17eaffd3aab archiving a subtree no longer automatically saves the archive file. How can I get this behavior back? A Debian bug was also opened for this issue: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887

[O] Error when using :session :colnames yes :results graphics on an R code block

2016-12-28 Thread Kodi Arfer
If I run Emacs with emacs -Q --eval '(progn (add-to-list (quote load-path) "/home/hippo/.emacs.d/elpa/org-20161224") (add-to-list (quote load-path) "/home/hippo/.emacs.d/elpa/ess-20161223.108/lisp") (require (quote ess-site)))' , open an Org file containing #+BEGIN_SRC R :session :f

[O] ":results none" doesn't seem to be documented

2015-01-14 Thread Kodi Arfer
"none" is allowed as an argument to :results (see, for example, ob-core.el line 704 as of Git d36bd8d), but this isn't mentioned in results.html. I just learned of its existence while reading ob-core.el. To me, by the way, ":results none" seems like a useful feature rather than being redundant

[O] Should comments break paragraphs?

2013-07-15 Thread Kodi Arfer
If you export some text # a comment more text then you get two paragraphs, not one. Is this intentional? The old export engine gave you one paragraph. I liked that behavior better, since it allowed me to insert notes in the middle of paragraphs. The manual still says "Paragraphs are separated

Re: [O] [PATCH] ox-html: Allow "Figure %d:", etc. to be styled

2013-07-09 Thread Kodi Arfer
On 2013 Jul 09 Tue 3:53:26 PM -0400, Nicolas Goaziou wrote: Kodi Arfer writes: From a873d204b2c4f3facf2d8658f69764acbd063246 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 3 Jul 2013 17:51:56 -0400 Subject: [PATCH] ox-html: Allow "Figure %d:", etc. to be styled * lisp/

[O] [PATCH] ox-html: Allow "Figure %d:", etc. to be styled

2013-07-03 Thread Kodi Arfer
>From a873d204b2c4f3facf2d8658f69764acbd063246 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 3 Jul 2013 17:51:56 -0400 Subject: [PATCH] ox-html: Allow "Figure %d:", etc. to be styled * lisp/ox-html.el (org-html-paragraph): Wrap "Figure %d:" in . (org-html-l

Re: [O] Standalone hyperlinked images in HTML export

2013-07-01 Thread Kodi Arfer
On 2013 Jul 01 Mon 5:01:46 PM -0400, Nicolas Goaziou wrote: Hello, Kodi Arfer writes: The manual explains in "Images in HTML export" that you can make an image a hyperlink like this: [[file:highres.jpg][file:thumb.jpg]] where thumb.jpg becomes the 'src' and highres.jp

[O] Standalone hyperlinked images in HTML export

2013-06-30 Thread Kodi Arfer
to stop working on this issue for now, but at least what I've done could be helpful for anybody else who wants to go further down the rabbit hole. P.S. I sent a request for a copyright-assignment form earlier today. >From fe74b3507795f2664291250250bc24b943f8f12b Mon Sep 17 00:00:00 2001 Fro

Re: [O] [PATCH] ox-html: Restore wrongly omitted table attributes under HTML5.

2013-06-29 Thread Kodi Arfer
On 2013 Jun 29 Sat 6:37:33 PM -0400, Nicolas Goaziou wrote: Kodi Arfer writes: From edd97671641e28c3e240efe6ea8fa8d77b4b7eae Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sat, 29 Jun 2013 10:43:07 -0400 Subject: [PATCH] ox-html: Restore wrongly omitted table attributes under HTML5

[O] [PATCH] ox-html: Restore wrongly omitted table attributes under HTML5.

2013-06-29 Thread Kodi Arfer
>From edd97671641e28c3e240efe6ea8fa8d77b4b7eae Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sat, 29 Jun 2013 10:43:07 -0400 Subject: [PATCH] ox-html: Restore wrongly omitted table attributes under HTML5. * lisp/ox-html.el (org-html-table): For HTML5, omit :html-table-attributes but

[O] [PATCH] ox-html: Under html5-fancy, use for the ToC

2013-06-01 Thread Kodi Arfer
>From a1aa357f75cd37ef676f5ac4dbbe66ad66d76aa8 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sat, 1 Jun 2013 17:41:38 -0400 Subject: [PATCH] ox-html: Under html5-fancy, use for the ToC * lisp/ox-html.el (org-html-toc): Use instead of for the root element when appropriate. TINYCHANGE --- lisp/ox-html

[O] [PATCH] ox-html: Fix handling of time-stamp-file

2013-05-30 Thread Kodi Arfer
>From 10814da65829d6918d736188027723dde30b4a3c Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Thu, 30 May 2013 15:19:57 -0400 Subject: [PATCH] ox-html: Fix handling of time-stamp-file * lisp/ox-html.el (org-html--build-meta-info): Insert no timestamp when :time-stamp-file is nil. TINYCHA

Re: [O] Bug with automatic alignment of table columns in HTML export

2013-03-19 Thread Kodi Arfer
On 2013 Mar 19 Tue 1:26:13 PM -0400, Bastien wrote: Hi Kodi, Kodi Arfer writes: Consider an Org file with the following content: | a | b | |-+---| | 100 | 1 | | 1 | 1 | | | 1 | | | 1 | | | 1 | | | 1 | | | 1 | | | 1 | Within Emacs, Org right-aligns the left

[O] Bug with automatic alignment of table columns in HTML export

2013-03-17 Thread Kodi Arfer
Consider an Org file with the following content: | a | b | |-+---| | 100 | 1 | | 1 | 1 | | | 1 | | | 1 | | | 1 | | | 1 | | | 1 | | | 1 | Within Emacs, Org right-aligns the left column, as it should, since most nonempty cells in the column are numeric. In HTML exp