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

2018-03-24 Thread stardiviner
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': (cond ((string= "none" (cdr (assq :session params))) nil)

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

2018-03-24 Thread stardiviner
Hi, @MaximI'm the author of `ob-sclang.el`. Whyneed to require `sclang` instead of `sclang-interp`? ob-sclangused functions are all in `sclang-interp.el` file. No need to require `sclang`. And I checked out `scel` source code, have not found update. Might because `sclang-interp`? On 03/25/2

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

2018-03-24 Thread Samuel Wales
i reduced levels in org. the exported html has no h1. it has nothing deeper than h4. it sounds like it's producing latex someplace but can't produce pdf. still i get this: pandoc -o sickly--pdf-from-pandoc.pdf alpha-org-export-output.html ! LaTeX Error: Too deeply nested. See the LaTeX manual

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

2018-03-24 Thread Samuel Wales
i find that the following does not take effect the first time, but works the second time. not sure why that would be. 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 l

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

2018-03-24 Thread Maxim Cournoyer
Hello! The attached patch fixes a byte compilation issue in ob-sclang.el. Thank you! Maxim >From 0cbc7a1526cd5a87de776de86948bded399063c9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 24 Mar 2018 19:13:42 -0400 Subject: [PATCH] contrib: ob-sclang: Fix compilation issue. * contrib/

[O] Bug: org-capture when :prepend t org-capture-kill removes one char too much from target buffer [9.1.7 (9.1.7-18-g2f587d-elpaplus @ /Users/devil/.emacs.d/elpa/org-plus-contrib-20180312/)]

2018-03-24 Thread Adam Faryna
When use org-capture which template that targets file with :prepend t, org-capture-kill removes one char too much from target buffer, in result next item in target file looses one of asterisk. Expected behaviour: org-capture when used which template which targets file with :prepend t, org-capture-

[O] Bug: Inconsistent behavior of org agenda view filtering [9.1.5 (9.1.5-1-gb3ddb0-elpa @

2018-03-24 Thread johann.hoechtl
When I open org agenda C-a a, there are a variety of commands which can alter the amount of information visible. However these commands are not consistent in the sense that, once activated, an indication would be shown WHAT is currently visible. For example: l ... to the status bar `Log` gets appp

[O] Table latex exporting ignores #+ATTR_LATEX:

2018-03-24 Thread Peter Mukhachev
Hello everyone, I am making a table using org mode in order to export it to tex file and insert resulting file to my document. (org-latex-export-as-latex) does the thing, however, I do not need header thing that it inserts by default. (org-table-export) can probably do the thing I want. However,

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

2018-03-24 Thread Abigaile Johannesburg
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 # for indicating commands for root or privileged user, if I use #+begin_

Re: [O] LaTeX export filter

2018-03-24 Thread Eric S Fraga
On Saturday, 24 Mar 2018 at 22:24, Vikas Rawal wrote: > I am trying to write a LaTeX export filter that should replace all > table rows with cells having entries such as <3cid4> by > \cmidrule{lr}{3-4} [...] > (while (string-match > "\\(<\\([0-9]+\\)cid\\([0-9]+\\)?>[[:blank:]]*\\([^&

Re: [O] About the assignment of FSF papers

2018-03-24 Thread Nicolas Goaziou
Hello, stardiviner writes: > Hi, @Nicolas I finished my FSF paper assignment. Check out the > attachment. Great. I added you to the Hall of Fame. > Finally can merge my patch now. So I can use it and delete the branch. OK. It doesn't seem to apply on master. Could you include my latest commen

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

2018-03-24 Thread Eric S Fraga
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 default .9\linewidth default. See > the following exam

Re: [O] cautionary tale: avoid creating/using a macro called "title"

2018-03-24 Thread Eric S Fraga
On Friday, 23 Mar 2018 at 23:42, Nicolas Goaziou wrote: > A bit late, yet fixed. Thank you. Thank you! Works fine now. And I have increased confidence in my sanity. ;-) -- Eric S Fraga via Emacs 27.0.50, Org release_9.1.6-341-g3a4fd3 signature.asc Description: PGP signature

[O] LaTeX export filter

2018-03-24 Thread Vikas Rawal
Let me start by confessing my limited knowledge of lisp. I am trying to write a LaTeX export filter that should replace all table rows with cells having entries such as <3cid4> by \cmidrule{lr}{3-4} The idea is to have a table row of this kind | <2cid3> | <4cid5> |<6cid7>

Re: [O] Is it possible to add a :results type for ob-shell to interpret it's some special characters?

2018-03-24 Thread stardiviner
I found new possible solution: comint-based modes like shell-mode use functions in hook. Like - ansi-color-process-output And I found similar project "xterm-color": https://github.com/atomontage/xterm-color I can't implement it on Org-moderesult processing. But someone might be interested t

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

2018-03-24 Thread Julien Cubizolles
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 default .9\linewidth default. See the following examples. Julien. orgmode file: --8<---cut here---