Re: [O] Bug in the sorting of clocktables with ":sort (4 . ?T)" for clock sums over "100:00" hours

2017-08-24 Thread Nicolas Goaziou
Hello, Rainer Stengele writes: > I may have found a bug in the sorting of clocktables. > I am summing up clocked time over time periods. [...] > As soon as the sum grows higher than 100:00 sorting is corrupted: > > #+BEGIN: clocktable :maxlevel 1 :properties

Re: [O] is there an easier way to insert an internal link?

2017-08-24 Thread Gregor Zattler
Hi John, org-moders, * John Kitchin [2017-08-24; 06:41]: > I don't think this is in org-mode, but something like > helm-org-in-buffer-headings has an action for doing something like that. Yupp, it's on "C-c l" and asks for the description. Thanks a lot, Gregor

[O] LaTeX > PDF blocked by extender chars in filename

2017-08-24 Thread Eduardo Mercovich
Dear all. I hope this is the right place to share this. If not, please forgive me for the bothering and point me to the right place. When a referenced file has an extended character in it's filename, the export to pdf function ends without export nor any informative error. I found it by

[O] Bug: org-copy-visible includes emphasis markerse hidden by org-hide-emphasis-markers [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.2/lisp/org/)]

2017-08-24 Thread Gary Cheng
Emacs : GNU Emacs 25.2.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.22.16) of 2017-07-15 Package: Org-mode version 8.2.10 (release_8.2.10 @ /usr/share/emacs/25.2/lisp/org/)

Re: [O] org-protocol: deal with broken links on windows

2017-08-24 Thread Ingo Lohmar
Hi Nikolay, Thanks for your reply. I checked a few things today: I am using Org mode version 9.0.9 (9.0.9-82-gb862c2-elpaplus, org-plus-contrib-20170814/) and the unofficial emacs build GNU Emacs 25.2.1 (x86_64-w64-mingw32) of 2017-04-24 from http://sourceforge.net/projects/emacsbinw64/

Re: [O] switch export subtree

2017-08-24 Thread Berry, Charles
> On Aug 24, 2017, at 12:12 AM, Sébastien Le Maguer > wrote: > > Hello, > > I'm looking for a way to switch of the export of a specific subtree in a > document using a specific exporter. For example, let's assume the document > > * Section 1 > ** Subsection

[O] Conditional summing in column-mode?

2017-08-24 Thread Stig Brautaset
I have the following column-mode defined in =~/org/Holidays.org=: #+BEGIN_SRC org ,#+COLUMNS: %TIMESTAMP(When) %ITEM(What) %CONFIRMED(Confirmed?){X/} %DAYS(Days){+} ,#+Confirmed_ALL: "[ ]" "[X]" ,#+TODO: TODO | DONE CANCELLED #+END_SRC Is it possible to have the =%DAYS(Days){+}= part

Re: [O] counter macro in dates?

2017-08-24 Thread Kaushal Modi
On Wed, Aug 23, 2017 at 9:46 PM Adam Porter wrote: > > That's very cool. Do you think Oleh would add it to Tiny? > PR submitted :) https://github.com/abo-abo/tiny/pull/9 -- Kaushal Modi

Re: [O] [PATCH] Add TITLE export to ox-md

2017-08-24 Thread Jay Kamat
> I'm not so sure about it. Vanilla Markdown does not support title. > Neither does "ox-md.el" I agree that vanilla markdown does not support title, but if ox-md does not support any form of title, then there is disparity between the output of other org exports and the markdown exporter. I

[O] Bug in the sorting of clocktables with ":sort (4 . ?T)" for clock sums over "100:00" hours

2017-08-24 Thread Rainer Stengele
Hi, I may have found a bug in the sorting of clocktables. I am summing up clocked time over time periods. As long as the clocksum is under "100:00" (6 characters including ":") sorting seems to be ok: #+BEGIN: clocktable :maxlevel 1 :properties ("CATEGORY") :fileskip0 t :scope

Re: [O] is there an easier way to insert an internal link?

2017-08-24 Thread John Kitchin
I don't think this is in org-mode, but something like helm-org-in-buffer-headings has an action for doing something like that. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213

Re: [O] org export: how to avoid putting :export: in the exported file?

2017-08-24 Thread Leslie Watter
Hi Rainer, you could use: #+OPTIONS: tags:nil in you file. You can take a look at http://orgmode.org/manual/Export-settings.html to more options if you like. Cheers, LEslie On Thu, Aug 24, 2017 at 9:54 AM, Rainer Thiel wrote: > I often export org-files, most of the

[O] org export: how to avoid putting :export: in the exported file?

2017-08-24 Thread Rainer Thiel
I often export org-files, most of the time to LaTeX/pdf, but the behaviour/problem is alike with many export filters. Let us say I want to export an org-file that runs like this: > * First Section > Some text > * Second Section :export: > Some more text > * Third Section > Even more text When I

[O] is there an easier way to insert an internal link?

2017-08-24 Thread Gregor Zattler
Der org-mode users, I'm in a big org-mode file and want to insert a link to a specific heading. Till now I go to that heading, do org-store-link, go back to the insert location and do org-insert-link. Isnt' there a way to say insert-internal-link-here, get a list of headings like refile

Re: [O] counter macro in dates?

2017-08-24 Thread Kaushal Modi
On Wed, Aug 23, 2017, 9:46 PM Adam Porter wrote: > > That's very cool. Do you think Oleh would add it to Tiny? > Good question. I'll open an issue on that repo. When I wrote this, I wasn't too good with git, creating branches or submitting PR's. > -- Kaushal Modi

Re: [O] [PATCH] Add TITLE export to ox-md

2017-08-24 Thread Kaushal Modi
On Thu, Aug 24, 2017, 5:31 AM Nicolas Goaziou wrote: > > I'm not so sure about it. Vanilla Markdown does not support title. > Neither does "ox-md.el" > Correct, vanilla Markdown does not support title. The file name is the title. For example, the file names of the Wiki

Re: [O] [PATCH] Add TITLE export to ox-md

2017-08-24 Thread Nicolas Goaziou
Hello, Jay Kamat writes: > The markdown editor should support TITLE I'm not so sure about it. Vanilla Markdown does not support title. Neither does "ox-md.el" Is there any consensus about how title are handled in _vanilla_ syntax? > -(defun org-md-template (contents

[O] switch export subtree

2017-08-24 Thread Sébastien Le Maguer
Hello, I'm looking for a way to switch of the export of a specific subtree in a document using a specific exporter. For example, let's assume the document * Section 1 ** Subsection 11 ** Subsection 12 I would like to export only Subsection 11 into HTML and only Subsection 12 into