Re: [O] patch for HTML links to GNU documents

2016-03-27 Thread Marcin Borkowski
On 2016-03-28, at 00:55, Richard Kim wrote: > Attached patch affects how 'info' links in org mode are converted to HTML > links. Today info links such as > > [[info:emacs#List Buffers]] > > are converted to this HTML link: > > emacs#List Buffers > > With the patch applied, the HTML link

Re: [O] a patch to ob-lisp.el

2016-03-27 Thread Nick Dokos
stardiviner writes: > I hope to merge this patch to Org-mode `ob-lisp.el`. > I have only looked at the surface of it, but I see some issues. > < ;; Copyright (C) 2016-2020 Free Software Foundation, Inc. > --- > > ;; Copyright (C) 2009-2016 Free Software Foundation, Inc. Why did you leave out t

[O] no div/id on named example blocks in html export

2016-03-27 Thread John Kitchin
I noticed that if I make a block like this: #+name: methane-smiles #+BEGIN_EXAMPLE C #+END_EXAMPLE There is no id="methane-smiles" assocated with the pre block in the HTML export. The place to add it would be in org-html-example-block I suppose. Is there any reason not to do that? -- Profess

[O] switch parsing in babel

2016-03-27 Thread John Kitchin
I am trying to make a new source block that looks like this: #+BEGIN_SRC obabel -icml -osmi [CH4] #+END_SRC This gets parsed to: (src-block (:language "obabel" :switches "-i" :parameters "cml -osmi" :begin 190 :end 240 :number-lines nil :preserve-indent t :retain-labels t :use-labels t :label-

[O] patch for HTML links to GNU documents

2016-03-27 Thread Richard Kim
Attached patch affects how 'info' links in org mode are converted to HTML links. Today info links such as [[info:emacs#List Buffers]] are converted to this HTML link: emacs#List Buffers With the patch applied, the HTML link generated would be http://www.gnu.org/software/emacs/manu

[O] a patch to ob-lisp.el

2016-03-27 Thread stardiviner
Here is my repo, and I also created an recipe on MELPA. - http://gituhb.com/stardiviner/ob-lisp - https://github.com/melpa/melpa/pull/3682 I hope to merge this patch to Org-mode `ob-lisp.el`. 1c1 < ;;; ob-lisp.el --- org-babel functions for common lisp evaluation with SLY or SLIME. --- > ;;; ob