[O] some publish html options gone

2016-01-17 Thread Manuel Koell
When I try to use `M-x customize` and search for `org-html-doctype` or `org-html5-fancy` I don't get any match. I still have them in my custom.el file, generated from an older emacs version (24.3). Were they removed? Emacs: 25.1.50.2 Org: 8.3.2

[O] Bug: IRC links translate wrong

2015-12-06 Thread Manuel Koell
>From org docs: http://orgmode.org/manual/External-links.html If you want to link some irc channel with irc:/ or [[irc://freenode/#emacs][emacs]] the link won't translate to irc:// as expected, instead a file:/// link will be created.

Re: [O] prevent auto appending #+INCLUDE files title

2015-11-23 Thread Manuel Koell
Oh, you're right! Your example opened my eyes thanks! Thanks a lot, Rasmus! 2015-11-23 18:33 GMT+01:00 Rasmus <ras...@gmx.us>: > Manuel Koell <man.ko...@gmail.com> writes: > > > I think you got me wrong or I don't understand correctly ^^ > > I don’t think so

[O] add publish option :with-setupfile

2015-11-23 Thread Manuel Koell
I would like to see such option so someone can create a setupfile with macros/options per project or target (component). The setupfiles can be located in the project directory then. I dont know how to set macros in publishing components. Otherwise, you'd have to insert the #+SETUPFILE option in

[O] prevent auto appending #+INCLUDE files title

2015-11-23 Thread Manuel Koell
I tried to use #+INCLUDE "sitemap.org" :only-contents t with the :auto-sitemap option on my publishing project, but whenever I include a file this way the title appends to the exported document title. example file (test.org) ``` #+TITLE: My title #+INCLUDE "sitemap.org" :only-contents t ```

Re: [O] prevent auto appending #+INCLUDE files title

2015-11-23 Thread Manuel Koell
Rasmus <ras...@gmx.us>: > Hi Manuel, > > Manuel Koell <man.ko...@gmail.com> writes: > > > I tried to use #+INCLUDE "sitemap.org" :only-contents t with the > > :auto-sitemap option on my publishing project, but whenever I include a > > file this

[O] exported html: src block missing pseudo-elements

2015-11-15 Thread Manuel Koell
I exported some html with defaut style and a javascript src block: ``` #+BEGIN_SRC javascript var x = {} #+END_SRC ``` The exported html contains the default styles and pseudo-elements for following languages only: ``` pre.src:hover:before { display: inline;} pre.src-sh:before{ content:

Re: [O] html export: what do codehighlighton/off functions do?

2015-11-13 Thread Manuel Koell
Sorry, I didn't know such feature exists in org mode! It's just kinda weird, these function still get called from onmouseover/onmouseout bindings. 2015-11-12 18:02 GMT+01:00 Rasmus <ras...@gmx.us>: > Manuel Koell <man.ko...@gmail.com> writes: > > > Can someone please tell

[O] org-html-postamble: %d empty date

2015-11-13 Thread Manuel Koell
I set up a publishing project including a custom postamble :html-postamble "Date: %d, Last modification: %C". When I export this file The %d date is empty. From `C-h v org-html-postamble-format` I got the info about the available elements to use: ``` %t stands for the title. %s stands for the

[O] html export: what do codehighlighton/off functions do?

2015-11-12 Thread Manuel Koell
Can someone please tell me what these functions do? ``` function CodeHighlightOn(elem, id) { var target = document.getElementById(id); if(null != target) { elem.cacheClassElem = elem.className; elem.cacheClassTarget = target.className; target.className = "code-highlighted";

Re: [O] Bug: bold text followed by footnote not bold

2015-11-11 Thread Manuel Koell
Upgraded to latest org 8.3.2 from "org" package archive (used 8.2.10 before) and now it works after I did M-x org-reload and uninstall/reinstalled latest org. Thanks! 2015-11-11 10:35 GMT+01:00 Nicolas Goaziou <m...@nicolasgoaziou.fr>: > Hello, > > Manuel Koell <

[O] Bug: bold text followed by footnote not bold

2015-11-10 Thread Manuel Koell
I just encountered following behaviour: *foo bar*[fn:1] will export as *foo bar*1 (not bold, with stars) *foo bar* [fn:2] will export as foo bar 1 (bold, but you've to use a space between bold text and marker) I may be wrong, but I thought a footnote marker will follow immediately after the

Re: [O] convert a simple list of lines each to a orgmode header

2015-09-29 Thread Manuel Koell
I know how to do in vim. Select all text and hit I (uppercase i), then start type. There is also a way in emacs, but I never tried before: https://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Rectangles.html 2015-09-29 5:30 GMT+02:00 Nick Dokos : > Xebar Saram

Re: [O] A book produced using Org

2015-09-19 Thread Manuel Koell
Beautiful! I would love to see the org file! How did emacs perform which such huge file? 2015-09-20 3:06 GMT+02:00 Vikas Rawal : > > > On 20-Sep-2015, at 4:20 am, Pascal Fleury wrote: > > > > Great! Congrats! > > > > I was actually wondering:

[O] capture append entries, not prepend

2015-07-25 Thread Manuel Koell
I've a capture template like this: '(org-capture-templates (quote ((j Journal plain (file+datetree ~/org/journal.org) %? :unnarrowed t)... Current behaviour: * 2015 ** 2015-07 July *** 2015-07-24 Friday 3rd entry bla bla bla 2nd entry foo bar 1st entry

Re: [O] capture append entries, not prepend

2015-07-25 Thread Manuel Koell
Thank you, Nick. I didn't know this is a feature. It is usual for me to go from top to bottom. So the only way to accomplish this order would be to use file+headline or file+olp? 2015-07-25 17:00 GMT+02:00 Nick Dokos ndo...@gmail.com: Manuel Koell man.ko...@gmail.com writes: I've a capture

Re: [O] Schedule more roughly

2015-07-17 Thread Manuel Koell
the visibility of those tasks in my agenda? I dont want to display those tasks on my agenda so I would need to filter them out using its own keyword? 2015-07-16 21:18 GMT+02:00 Subhan Michael Tindall subhan.mich...@gmail.com : On Wed, Jul 15, 2015 at 1:19 PM Manuel Koell man.ko...@gmail.com wrote

Re: [O] Org assumes scheduled/deadline time from headline

2015-07-17 Thread Manuel Koell
I provided an example here https://github.com/bastibe/org-journal/issues/48

Re: [O] Org assumes scheduled/deadline time from headline

2015-07-17 Thread Manuel Koell
Thank you, problem solved! 2015-07-17 14:32 GMT+02:00 Rasmus ras...@gmx.us: Manuel Koell man.ko...@gmail.com writes: I provided an example here https://github.com/bastibe/org-journal/issues/48 I see. (setq org-agenda-search-headline-for-time nil) Rasmus -- With monopolies

[O] Org assumes scheduled/deadline time from headline

2015-07-17 Thread Manuel Koell
I'm using the org-journal extension from Bastian Berchtold to write my daily stuff down. Some of my journal entries (headlines) start with a time like 12:17 or 20:33. When I make a TODO out of it and set a schedule/deadline date, orgmode assumes the time for the schedule/deadline date from the

[O] Timestamp range view in agenda

2015-07-15 Thread Manuel Koell
I have a date/timestamp range: 2015-07-13 Mon 09:00-12:00--2015-07-17 Fri 09:00-12:00 and 2015-07-20 Mon 09:00-12:00--2015-07-24 Fri 09:00-12:00 When I view it in the agenda: Monday, 13 July 2015 09:00-12:00 (1/5): Some appt ... Friday, 17 July 2015 09:00-12:00 (5/5): Some appt But all the

[O] Schedule more roughly

2015-07-15 Thread Manuel Koell
How can I schedule my todo's more roughly? Say, I know I want to do it next week or in a few months but I don't know the exact date nor time to do it. I just want a way to plan more foresighted. If the week starts or the month I could always set a more accurate timestamp then. Any idea? I tried to