Re: [O] Annotating org exporters

2016-05-10 Thread Sebastian Fischmeister
> > This sounds a bit like org-entities. I use this together with cdlatex for > quickly inserting such things. > > Try to type \Rightarrow and type C-c C-x \ > Also try to export to text (non-unicode). You will get the desired symbol. > > Alternatively, you can use one of the many input methods s

Re: [O] Annotating org exporters

2016-05-10 Thread Sebastian Fischmeister
Hi Richard, > There's an example of how to do something like this in the "Advanced > Configuration" section of the Export section in the manual. Maybe you > could adapt it like this? > > (defun my-latex-filter-rightarrow (text backend info) >(when (org-export-derived-backend-p backen

[O] Annotating org exporters

2016-05-10 Thread Sebastian Fischmeister
Hi, Is there a simple way to build regex-based extensions to the exporters? For example, I would like to convert this string "=>" to $\rightarrow$ when converting the document to latex. There are lots of other uses, where I could create my shortcuts and insert them in orgmode files without creati

Re: [O] patch to keep the level in refile

2015-11-01 Thread Sebastian Fischmeister
>> This causes problems, when the level has semantic meaning beyond >> defining the hierarchy (e.g., level 3 always indicates a task while >> levels 2 and 1 are project headings). > > Why don't you simply refile into the parent, then? Because there might not be a lvl 2 heading, but still lvl 3 are

[O] patch to keep the level in refile

2015-11-01 Thread Sebastian Fischmeister
Hi, This allows to specify via a variable whether org-refile should keep the level of the item when refiling. At the moment, org-refile automatically creates a sub-item at the next level. This causes problems, when the level has semantic meaning beyond defining the hierarchy (e.g., level 3 always

[O] Export agenda to HTML with links to body contents

2014-07-27 Thread Sebastian Fischmeister
Hi, I upload my agenda on a website, so I can access it from multiple devices. This works nicely with the following in a cron job: emacs --batch -l ~/.emacs.d/init.el -eval '(org-batch-store-agenda-views)' -kill The only thing I'm missing is links to the body of the item. Does Org currently supp

Re: [O] Force blank line above level 1 heading

2013-12-22 Thread Sebastian Fischmeister
>> Is there a way to always force a blank line above a level 1 >> heading. When I enter them manually, orgmode somethings things it >> belongs to the level 2 (or so) item above it and hides it. > > Check `org-blank-before-new-entry'. Yes, but this inserts a blank line before every entry. I would l

[O] Force blank line above level 1 heading

2013-12-20 Thread Sebastian Fischmeister
Hi, Is there a way to always force a blank line above a level 1 heading. When I enter them manually, orgmode somethings things it belongs to the level 2 (or so) item above it and hides it. So it should look like this: * eeny ** meeny ** miny next line will get swallowed sometimes; also it sho

[O] complex searches with org-sparse-tree

2012-10-07 Thread Sebastian Fischmeister
Hello, Is there a possibility to get a sparse tree for a more complex query? For review purposes, I would like to get a sparse tree with (SCHEDULED <= ) [if scheduled is set] or SCHEDULED is not set (org-sparse-tree) seems to be able to only to give me the first part, but it neither can give me

Re: [O] Templates for cloning

2012-08-08 Thread Sebastian Fischmeister
f wrote: > On Fri, Aug 3, 2012 at 9:40 PM, Sebastian Fischmeister > wrote: > > As an idea, this is how I use templates: > > > > %+begin_src > > (defun org-p (key) > > (let ((val (read-from-minibuffer (concat "Define " key ": "))

Re: [O] Templates for cloning

2012-08-03 Thread Sebastian Fischmeister
As an idea, this is how I use templates: %+begin_src (defun org-p (key) (let ((val (read-from-minibuffer (concat "Define " key ": " (plist-put org-store-link-plist (intern (concat ":" key)) val)) "" ) (defmacro org-g (key) (or (plist-get org-store-link-plist (int

[O] Custom escapes & the evaluation order in fill-template

2012-06-23 Thread Sebastian Fischmeister
Hello, Will it break org-mode when changing the order in which templates are filled in org-capture-fill-template? I want to create custom escapes in as part of the template: -- %(progn (plist-put org-store-link-plist :foo (read-from-minibuffer "foo: ")) "") ** %? doin