Re: [O] [ANN] Merge export-block type within special-block

2014-08-29 Thread KDr2
re and in contrib have been updated this way > already. > > I included `org-export-raw-special-block-p' in Org 8.2, as > a forward-compatibility measure, so back-end maintainers do not have to > do the `fboundp' dance. > > BTW, for those in the back of the room: I didn't remove > "#+BEGIN_LATEX"-like constructs. > > > Regards, > > -- > Nicolas Goaziou0x80A93738 > > -- -- KDr2, http://kdr2.com

Re: [O] [ANN] Merge export-block type within special-block

2014-09-25 Thread KDr2
I found this was fixed on both maint and master branch :) Thanks for all your works, but would you tell us how did you do it? or give the commit id? (Sorry I did not find it by myself...) Thank you very much. On Sun, Aug 31, 2014 at 8:56 PM, Nicolas Goaziou wrote: > Hello, > > KDr

[O] #+INCLUDE: file in code block results does not work?

2014-03-26 Thread KDr2
a.org") :results raw but this does not work, anyone knows why? By the way, #+HTML_HEAD in code block results works well: #+NAME: d-header #+BEGIN_SRC elisp :results value raw :exports results (concat "#+HTML_HEAD: ") #+END_SRC #+CALL: d-header() :results raw Thanks. -- -- KDr2, http://kdr2.com

Re: [O] #+INCLUDE: file in code block results does not work?

2014-03-26 Thread KDr2
le #+INCLUDE: /path/to-include-dir/$1 > > > > {{{inc-file(a.org)}}} > > Err, no. Macros are also expanded after INCLUDE keywords. The only code > executed before these are handled is > `org-export-before-processing-hook'. > -- -- KDr2, http://kdr2.com

Re: [O] #+INCLUDE: file in code block results does not work?

2014-03-26 Thread KDr2
I wrote a blog entry to describe all the dynamic tricks I used in the exporting: http://kdr2.com/tech/emacs/orgmode-export-process.html On Wed, Mar 26, 2014 at 7:54 PM, KDr2 wrote: > Thanks very much. > > I use dynamic block now, by adding `org-update-all-dblocks' to > `

Re: [O] #+INCLUDE: file in code block results does not work?

2014-03-26 Thread KDr2
Oh, I'll star this mail, and add it to my post later, thanks again :) On Wed, Mar 26, 2014 at 10:31 PM, Nicolas Goaziou wrote: > Hello, > > KDr2 writes: > > > I wrote a blog entry to describe all the dynamic tricks I used in the > > exporting: > > > >

[O] Is there a way to change the home link and up link text when export to HTML?

2014-03-28 Thread KDr2
I want to change "UP | HOME " to "Archives | Categories" for my blog, but I do not know how to, for now I use javascript to change them after the page loading in browser... Thanks -- -- KDr2, http://kdr2.com

[O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-01 Thread KDr2
el")' ~/scheme-test.org -f org-html-export-to-html you will find the bug: `org-babel-scheme-execute-with-geiser' uses `current-message' to get the results of scheme code blocks, but `current-message' always returns nil in batch mode, and this pat

Re: [O] Prepare release 8.2.6

2014-04-03 Thread KDr2
s, please point at them. > > As usual, thanks in advance for your help, > > PS: gmane.org seems to be down since April, 1st, so I > could not follow the discussions since that time. > > -- > Bastien > > -- -- KDr2, http://kdr2.com From cebf9fc4fe09ab22fd31ff8e

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-08 Thread KDr2
Hi, folks Has anyone reviewed this patch? Or is there a better way to fix the bug? Thanks. On Wed, Apr 2, 2014 at 11:48 AM, KDr2 wrote: > The bug: > write file ~/scheme-test.org with the content below: > ---8<-- > #+BEGIN_SRC scheme :exports results :res

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-10 Thread KDr2
d me the minimal init.el to make your scheme-test.org > work in interactive mode? > > regards, > Oleh > > On Tue, Apr 8, 2014 at 3:56 PM, KDr2 wrote: > > Hi, folks > > > > Has anyone reviewed this patch? Or is there a better way to fix the bug? > > > >

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-10 Thread KDr2
27;ve got emacs trunk, GNU Guile 2.0.9, geiser from MELPA and I'm > getting the results in a *Geiser dbg* window instead of org-mode when > I eval. So the issue is either with ob-scheme or with my geiser, > which is the development version, but I don't see why it shouldn't > work. > > regards, > Oleh > -- -- KDr2, http://kdr2.com

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-10 Thread KDr2
ctions that > ob-scheme uses has been changed. > > Oleh > > On Thu, Apr 10, 2014 at 11:02 AM, KDr2 wrote: > > Does your "M-x run-geiser" work? It will lead you to a scheme REPL like > > this: > > > > GNU Guile 2.0.9-deb+1-1 > > Copyright (C)

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-10 Thread KDr2
org-plus-contrib-20140407 And the file lisp/ob-scheme.el is the same as it in the master branch: And the error message before patched: Loading /home/kdr2/.emacs.d/init.el (source)... Loading /home/kdr2/.emacs.d/src/elisp/common.el (source)... Loading pde-load... Loading pde-loaddefs

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-10 Thread KDr2
longer use `flet' in the Org-mode code base, please re-work > this patch w/o flet. > > Also, I don't see your name in the list of contributors, and (I believe) > this patch is too large to apply w/o FSF assignment. See the following > page on how to contribute to Org-mode

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-04-12 Thread KDr2
w this is a lot of process for a small patch, but from this > point forward once you have the FSF assignment you can much more > easily contribute to ob-scheme and org in general > > KDr2 writes: > > > Hi, Eric > > > > I'm sorry for that I used `fl

Re: [O] [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode

2014-05-22 Thread KDr2
Hi, all This patch is finally merged into the master branch, we can export results of scheme code block under batch mode now. Thanks to Eric, Bastien and Oleh. On Sat, Apr 12, 2014 at 10:12 PM, Eric Schulte wrote: > KDr2 writes: > > > HI, Eric > > > > You are righ

[O] Proposal: references from code to text.

2018-05-12 Thread ZHUO QL (KDr2)
Hi all, I just post a proposal for orgmode on my website(generated by orgmode): http://kdr2.com/tech/emacs/1805-proposal-org-ref-code-to-text.html . Here is the source of the proposal: # -*- mode: org; mode: auto-fill; -*- #+TITLE: Proposal for Orgmode: references from code to text. #+AUTHOR: KDr2

Re: [O] Proposal: references from code to text.

2018-05-16 Thread ZHUO QL (KDr2)
ement it, but I'm not very familiar with the code base and don't have much time, so I can't give any commitment. But once I have anything to show, I'll be back here  :) Greetings. ZHUO QL (KDr2, http://kdr2.com) On Tuesday, May 15, 2018, 6:05:31 PM GMT+8, Eric S Frag

Re: [O] Proposal: references from code to text.

2018-05-17 Thread ZHUO QL (KDr2)
Thanks, that works perfectly. I made a simple summary of this thread on my site: http://kdr2.com/tech/emacs/1805-approach-org-ref-code-to-text.html Greetings. ZHUO QL (KDr2, http://kdr2.com) On Thursday, May 17, 2018, 11:11:39 AM GMT+8, John Kitchin wrote: I believe you can do

[O] Easy Template does not expand

2018-05-17 Thread ZHUO QL (KDr2)
I am on the bleeding edge and using the master branch of Org-mode. After updating the source of Org a few days ago, I found the easy template can be expanded by TAB key now, that is: When I press TAB after typing http://kdr2.com)

Re: [O] Easy Template does not expand

2018-05-17 Thread ZHUO QL (KDr2)
Got it, thanks. Greetings. ZHUO QL (KDr2, http://kdr2.com) On Thursday, May 17, 2018, 9:42:00 PM GMT+8, Bernt Hansen wrote: "ZHUO QL (KDr2)" writes: > I am on the bleeding edge and using the master branch of Org-mode. After > updating the source of Org a few d