Re: [O] [PATCH] ob-clojure.el support :ns header argument

2018-03-25 Thread stardiviner
This is an extra patch. Should be with previous email's three patches. On 03/26/2018 09:59 AM, stardiviner wrote: - support :ns header (as discussed at here https://github.com/clojure-emacs/clojure-mode/pull/465#discussion_r158009538) - supoort inject CIDER outside of project - support

Re: [O] [PATCH] ob-clojure.el support :ns header argument

2018-03-25 Thread stardiviner
Previous `ob-clojure.el` patch implement method is not good enough. Here is a better implementation. Sorry for this over posting. On 03/26/2018 09:59 AM, stardiviner wrote: - support :ns header (as discussed at here

[O] Fix spelling in worg beamer

2018-03-25 Thread Oscar Najera
Hello, I was reading about ox-beamer and exporter and came across some spelling typos. I'm sending you a patch for those with write access. I tried to register an account on code.orgmode.org but since yesterday I'm still waiting for the confirmation email. Best regards, >From

[O] Temporary delay like --2d does not work correctly.

2018-03-25 Thread hhkg
Hi, With the latest release, --2d not work correctly. Use the test case in http://lists.gnu.org/archive/html/emacs-orgmode/2013-02/msg00554.html * TODO 1a SCHEDULED: <2018-02-24 Sat +1m --2d> * TODO 2a SCHEDULED: <2018-03-24 Sat +1m --2d> * TODO 1b SCHEDULED: <2018-02-25 Sun +1m --2d> *

Re: [O] Table latex exporting ignores #+ATTR_LATEX:

2018-03-25 Thread Peter Mukhachev
$ cat table-source.org #+ATTR_LATEX: :align lp{2cm}l | Name | Text | Rationale | | height | 18 m | ATC requriment | # Here I export with M-x org-table-export RET org-table-export- result.tex RET orgtbl-to-latex RET It gives the following (note the alignment string is "lll") $ cat

Re: [O] does this pandoc error look familiar to anybody?

2018-03-25 Thread Julius Dittmar
On 25.03.2018 00:58, Samuel Wales wrote: i then tried .latex and went to line 590 and did not find anything unusual, nor that line. but it was a list. must lists not be nested? How deeply are those lists nested? LaTeX has a maximum on that as well: 4 levels of a specific kind of list, and

Re: [O] How to escape # character in #+begin_src bash block for html export?

2018-03-25 Thread Michael Welle
Hello, Abigaile Johannesburg writes: > Dear community, > > I have a minor question about how to escape '#' character in > #+begin_src bash block. For example, when I export the source code > block for bash, I can use > > #+begin_src bash > $ > #+end_src > > > But if I want to use

Re: [O] org-latex-image-default-width ignored

2018-03-25 Thread Julien Cubizolles
Eric S Fraga writes: > On Saturday, 24 Mar 2018 at 16:20, Julien Cubizolles wrote: >> I'd like all inline images resized during beamer and latex export. I >> tried setting org-latex-image-default-width to ".3\\linewidth" but after >> export the latex file still uses the

Re: [O] org-latex-image-default-width ignored

2018-03-25 Thread Eric S Fraga
On Sunday, 25 Mar 2018 at 09:52, Julien Cubizolles wrote: > Found the cause of the problem, my default configuration exports in > async mode, so this variable should be set in > org-export-async-init.el. > > Is there a way to have a variable set during export to avoid setting it > for all exports?

Re: [O] what settings would make original export to pdf as good as pandoc conversion?

2018-03-25 Thread Eric S Fraga
On Saturday, 24 Mar 2018 at 17:23, Samuel Wales wrote: > it looks much better now. i think the main thing i would want is to > color links differently from the default red box, like maybe color the > text "#8968cd" and underline it so it looks kind of like a web page. You can specify settings to

Re: [O] Table latex exporting ignores #+ATTR_LATEX:

2018-03-25 Thread Eric S Fraga
On Tuesday, 20 Mar 2018 at 15:43, Peter Mukhachev wrote: > (org-table-export) can probably do the thing I want. However, > dispatching it with latex backend ends up with #+ATTR_LATEX: line > ignored and exports bare table only in its tabular environment. > However, I would like to be able to

Re: [O] does this pandoc error look familiar to anybody?

2018-03-25 Thread Samuel Wales
On 3/25/18, Julius Dittmar wrote: > On 25.03.2018 00:58, Samuel Wales wrote: >> i then tried .latex and went to line 590 and did not find anything >> unusual, nor that line. >> but it was a list. must lists not be nested? > > How deeply are those lists nested? LaTeX has a

Re: [O] [PATCH v2 0/3] org-sbe fixes

2018-03-25 Thread Alan Schmitt
Hello, On 2018-03-20 00:07, Nicolas Goaziou writes: > Hello, > > Vladimir Panteleev writes: > >> OK, here is v2 with table-based tests. >> >> Vladimir Panteleev (3): >> ob-table: Fix org-sbe's handling of quotes in cell values >> ob-table:

Re: [O] [PATCH v2 0/3] org-sbe fixes

2018-03-25 Thread Vladimir Panteleev
On 2018-03-25 20:26, Nicolas Goaziou wrote: I think this has been applied to the maint branch, but I cannot find a mention of it in the ORG-NEWS file. Maybe it should be mentioned there as it is a breaking change. For instance,(I had to modify table formulas like Sorry, I did not intend this

Re: [O] [PATCH] add :session support for ob-js.el

2018-03-25 Thread Nicolas Goaziou
Hello, stardiviner writes: > I attached my new generated patches. > > > On 03/17/2018 07:14 PM, Nicolas Goaziou wrote: >> Some comments follow. >>> + (result (if (not (string= (cdr (assq :session params)) "none")) >> You can integrate the test above in the `cond':

[O] ical2org release

2018-03-25 Thread Robert Horn
It's been over a week without problems, so ical2org is released at 1.0 It is a go command line program that is suitable for importing bulk Ical (.ics) records, Ical attached to emails, and fetching Ical from google. They are converted into an org structured file. Details are at

Re: [O] [PATCH v2 0/3] org-sbe fixes

2018-03-25 Thread Vladimir Panteleev
Hi, On 2018-03-25 21:06, Nicolas Goaziou wrote: I agree "org-sbe" should be rewritten. However, it is specific to tables because it is meant to be used in a TBLFM line. Its replacement could live in "org-table.el", though. What about org-sbe is specific to tables? I'm thinking that the

Re: [O] How to escape # character in #+begin_src bash block for html export?

2018-03-25 Thread Nick Dokos
Michael Welle writes: > Hello, > > Abigaile Johannesburg writes: > >> Dear community, >> >> I have a minor question about how to escape '#' character in >> #+begin_src bash block. For example, when I export the source code >> block for bash, I can use >> >>

Re: [O] [PATCH v2 0/3] org-sbe fixes

2018-03-25 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > I think this has been applied to the maint branch, but I cannot find a > mention of it in the ORG-NEWS file. Maybe it should be mentioned there > as it is a breaking change. For instance,(I had to modify table formulas like > >

Re: [O] [PATCH v2 0/3] org-sbe fixes

2018-03-25 Thread Nicolas Goaziou
Hello, Vladimir Panteleev writes: > One ugly fix would be to patch over this by checking for some common > lisp forms that result in a list, such as (list ...) and (quote ...), > and treat the remaining ones in a backwards-compatible way. However, > the more time I

Re: [O] [PATCH] contrib: ob-sclang: Fix compilation issue.

2018-03-25 Thread Nicolas Goaziou
Hello, Maxim Cournoyer writes: > The attached patch fixes a byte compilation issue in ob-sclang.el. Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] [PATCH] add :session support for ob-js.el

2018-03-25 Thread stardiviner
Thanks for your refactoring. I must be recklessof this. I will be careful next time. On 03/26/2018 05:09 AM, Nicolas Goaziou wrote: Hello, stardiviner writes: I attached my new generated patches. On 03/17/2018 07:14 PM, Nicolas Goaziou wrote: Some comments follow.

Re: [O] [PATCH] ob-clojure-literate.el add some new functions

2018-03-25 Thread stardiviner
- support :ns header (as discussed at here https://github.com/clojure-emacs/clojure-mode/pull/465#discussion_r158009538) - supoort inject CIDER outside of project - support :varinitialization when :session initialization prepare. On 03/22/2018 01:49 AM, stardiviner wrote: Two patches One

[O] [PATCH] Fix git-annex-get call in org-attach

2018-03-25 Thread Matt Lundin
I've attached a patch that fixes a minor issue in org-attach related to git annex. Basically, it ensures that a shell command is called from within the git-annex repository (i.e., the org-attach-directory). Otherwise, the command results in an error because it is called in the incorrect directory.