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
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
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
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-
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
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