Re: [O] [RFC] Org version of the Org manual

2013-03-05 Thread Yagnesh Raghava Yakkala
Hello Thomas, > These instructions assume more knowledge than I have. Could you be more > specific about "in the Org worktree"? Should I create a branch where I > do this? Or, should I put this in one of the upstream branches and > arrange to push it into the Org repo? In any case, can you sugge

Re: [O] [new exporter] ignoring a headline on export to PDF via?latex

2013-03-05 Thread Charles Berry
Suvayu Ali gmail.com> writes: > > On Tue, Mar 05, 2013 at 08:58:28PM +, Charles Berry wrote: > > [...] > > > FWIW, I defun'ed filters like the above for all of the filter functions [...] > > if anyone is interested, I can post or upload somewhere. > > That would be wonderful! > > You c

[O] [PATCH] ox-latex: Support tikz images, :width, and :height

2013-03-05 Thread Aaron Ecay
* ox-latex.el: (org-latex-image-default-option): Change default value to "" (org-latex-image-default-width) (org-latex-image-default-height): Add variables (org-latex-inline-image-rules): Make .tikz files as exportable with latex (org-latex--inline-image): Support tikz images. Also support separat

Re: [O] [new exporter] [html] Tables of Contents

2013-03-05 Thread Jambunathan K
>> This gives a significant advantage in that authors can link to the >> various instances just by knowing their own usage. For instance, if >> they provided a top-level toc at the beginning of their book, and a >> deeper-level toc later on, they could link to each separately by id by >> knowing

[O] [PATCH] * lisp/org-src.el (org-edit-src-exit): disable undo.

2013-03-05 Thread Aaron Ecay
Currently, this function modifies the buffer-undo-list, which it should not. One can reproduce the undesirable behavior by creating a new org buffer and manually typing in the following text: #+begin_src emacs-lisp foo bar #+end_src Then press C-c ' twice to enter and exit the edit-src. The

Re: [O] [new exporter] [html] Tables of Contents

2013-03-05 Thread Jambunathan K
Torrey >>> One small problem, though: I see that if there is a TOC at the top and >>> then one included later using #+TOC, the exporter gives them both the >>> same id (). Duplicate ID's makes the XML >>> invalid. >> >> What do you suggest instead? id="table-of-contents-1" for the first >> #+TOC

[O] [PATCH] * lisp/org.el (org-set-font-lock-defaults): include link targets

2013-03-05 Thread Aaron Ecay
The org-target face is created in org-faces.el, but never used for font-locking. This patch fixes that. --- lisp/org.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org.el b/lisp/org.el index 3959c17..5399177 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -6056,6 +6056,8 @@ needs to

Re: [O] [PATCH] ox-latex: provide width and height options for images

2013-03-05 Thread aaronecay
2013ko otsailak 27an, Nicolas Goaziou-ek idatzi zuen: > Thank you for your patch. Here are a few comments. Thank you for the comments! I think the patch is simpler and better thanks to them. > >> These are implemented with \resizebox, and thus are uniform across >> different types of image incl

[O] [PATCH] * lisp/ob-core.el (org-babel-execute-src-block): insert hash for silent results

2013-03-05 Thread Aaron Ecay
In order for the cache feature to work, the hash of a finished computation must be inserted. But, this is not currently done for src blocks which have the option :results none. Thus, we should insert a dummy empty result for these blocks, which will hold the hash. --- lisp/ob-core.el | 5 -

[O] Block agendas and filtering

2013-03-05 Thread Thomas Moyer
Is it possible to have a block agenda that contains two daily/weekly agendas that are "opposites" of each other, based on something like a tag? For example I have my normal todo list things that are scheduled, and then I have other regular things, like cleaning and taking care of other tasks that o

[O] Using org-map-entries with org-export-before-processing-hook

2013-03-05 Thread Eric Abrahamsen
I've attached a minimum org file that shows what I'm trying to do: essentially to attach a hook to the export process that ends up calling org-map-entries to make alterations to the file just before it's exported. As I've got it now, the hook does change the org buffer, but those changes are *not*

Re: [O] [RFC] Org version of the Org manual

2013-03-05 Thread Thomas S. Dye
Hi Achim, Achim Gratz writes: > Thomas S. Dye writes: > […] >> I look forward to picking this project up again in a week or so, or >> learning from my Org colleagues that the project ought to be scuttled. > > Hi Tom, > > this looks good. Thanks for reviewing a work in progress. I'm really plea

Re: [O] [new exporter] #+TOC in beamer export

2013-03-05 Thread Nicolas Goaziou
Hello, Suvayu Ali writes: > On Tue, Mar 05, 2013 at 10:53:42PM +0100, Andreas Leha wrote: >> Nicolas Goaziou writes: >> > Andreas Leha writes: >> > >> >> from a recent thread I learned about #+TOC (there's always something new >> >> to learn about org mode). >> >> >> >> I'd like to use it in a

Re: [O] [Bug] beamer backend and org-reload

2013-03-05 Thread Nicolas Goaziou
Hello, Suvayu Ali writes: > Hi Achim, > > On Tue, Mar 05, 2013 at 07:26:54PM +0100, Achim Gratz wrote: >> Suvayu Ali writes: >> > That said, I have noticed something odd about the new exporter and >> > org-reload. I think with the new exporter after doing org-reload, org >> > related config is

Re: [O] New html exporter and filters

2013-03-05 Thread Rick Frankel
On Tue, Mar 05, 2013 at 09:16:16AM +0100, Nicolas Goaziou wrote: > Rick Frankel writes: > > On the other hand, it would be easier if ox-html were modified so that > > org-html-headline uses a variable (or callback) for the format of the > > wrapper (currently " > generation. This would add flexib

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Nicolas Goaziou
Hello, Eric S Fraga writes: > I used to use the following to ignore a headline when exporting to PDF: > > #+begin_src emacs-lisp > (defun my-e-latex-headline (headline contents info) > (if (member "ignoreheading" (org-element-property :tags headline)) contents > (org-latex-headline headlin

Re: [O] [new exporter] #+TOC in beamer export

2013-03-05 Thread Suvayu Ali
On Tue, Mar 05, 2013 at 10:53:42PM +0100, Andreas Leha wrote: > Nicolas Goaziou writes: > > Andreas Leha writes: > > > >> from a recent thread I learned about #+TOC (there's always something new > >> to learn about org mode). > >> > >> I'd like to use it in a beamer document. Here I find it hard

Re: [O] [Bug] beamer backend and org-reload

2013-03-05 Thread Suvayu Ali
Hi Achim, On Tue, Mar 05, 2013 at 09:50:29PM +0100, Achim Gratz wrote: > Suvayu Ali writes: > >(add-to-list 'org-latex-classes > > '("beamer" > > "\\documentclass\[presentation\]\{beamer\}" > > ("\\section\{%s\}" . "\\section*\{%s\}") > >

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Nicolas Goaziou
Hello, Eric S Fraga writes: > Suvayu Ali writes: > > [...] > >> Try using your function with a filter. This filter might work: >> org-export-filter-headline-functions. Of course it goes without saying >> you will have to update your function. > > Thanks Suvayu. It is this update that I need

Re: [O] [new exporter] #+TOC in beamer export

2013-03-05 Thread Andreas Leha
Hi Nicolas, Nicolas Goaziou writes: > Hello, > > Andreas Leha writes: > >> from a recent thread I learned about #+TOC (there's always something new >> to learn about org mode). >> >> I'd like to use it in a beamer document. Here I find it hard to use >> because it introduces its own frame. >>

Re: [O] [new exporter] ignoring a headline on export to PDF via?latex

2013-03-05 Thread Suvayu Ali
On Tue, Mar 05, 2013 at 08:58:28PM +, Charles Berry wrote: [...] > FWIW, I defun'ed filters like the above for all of the filter functions that > can > take (text backend info) as arguments. Then using a derived backend like the > above `latex3', I can see where the filterable elements are.

Re: [O] [new exporter] is #+bind supported?

2013-03-05 Thread Nicolas Goaziou
Hello, Eric S Fraga writes: > I seem to have some problem with the new exporter taking into account a > =#+BIND= directive such as > > #+bind: org-latex-pdf-process ("pdflatex %b" "bibtex %b" "pdflatex %b" > "pdflatex %b") > > Am I doing something really silly here? I need bibtex to export m

Re: [O] [new exporter] #+TOC in beamer export

2013-03-05 Thread Nicolas Goaziou
Hello, Andreas Leha writes: > from a recent thread I learned about #+TOC (there's always something new > to learn about org mode). > > I'd like to use it in a beamer document. Here I find it hard to use > because it introduces its own frame. > > My question basically is: How is this supposed t

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Charles Berry
Suvayu Ali gmail.com> writes: > > On Tue, Mar 05, 2013 at 01:25:03PM -0500, Nick Dokos wrote: > > Eric S Fraga ucl.ac.uk> wrote: > > > > > Suvayu Ali gmail.com> writes: > > > > > > [...] > > > > > > > Try using your function with a filter. This filter might work: > > > > org-export-filter-

Re: [O] [Bug] beamer backend and org-reload

2013-03-05 Thread Achim Gratz
Suvayu Ali writes: >(add-to-list 'org-latex-classes > '("beamer" > "\\documentclass\[presentation\]\{beamer\}" > ("\\section\{%s\}" . "\\section*\{%s\}") > ("\\subsection\{%s\}" . "\\subsection*\{%s\}") > ("

[O] Slowdown when editing tables with horizontal lines

2013-03-05 Thread Peder Stray
I have noticed a significant slowdown when editing tables with horizontal lines compared with the same table without the horizontal line. Currently tested in 7.9.2 and the version in elpa (7.9.3e i think?). Editing the table I have now, 12 columns, about 60 rows is nearly instant when the table d

[O] [Bug] beamer backend and org-reload

2013-03-05 Thread Suvayu Ali
Hi Achim, On Tue, Mar 05, 2013 at 07:26:54PM +0100, Achim Gratz wrote: > Suvayu Ali writes: > > That said, I have noticed something odd about the new exporter and > > org-reload. I think with the new exporter after doing org-reload, org > > related config is not reloaded properly. > > Config is

Re: [O] [new exporter] [html] Tables of Contents

2013-03-05 Thread T.F. Torrey
Nicolas Goaziou writes: > Hello, > > tftor...@tftorrey.com (T.F. Torrey) writes: > >> One small problem, though: I see that if there is a TOC at the top and >> then one included later using #+TOC, the exporter gives them both the >> same id (). Duplicate ID's makes the XML >> invalid. > > What d

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Suvayu Ali
On Tue, Mar 05, 2013 at 01:25:03PM -0500, Nick Dokos wrote: > Eric S Fraga wrote: > > > Suvayu Ali writes: > > > > [...] > > > > > Try using your function with a filter. This filter might work: > > > org-export-filter-headline-functions. Of course it goes without saying > > > you will have t

Re: [O] Tips for using orgmode + ledger to record events?

2013-03-05 Thread Viktor Rosenfeld
Hi Eric, thanks for explaining your structure. Eric S Fraga wrote: > I don't use capture templates; I manually enter the information. I did > use to use capture but found it too clumsy for my setup (or I was never > able to suss out how to define the right capture templates). I don't > reconc

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Nick Dokos
Eric S Fraga wrote: > Suvayu Ali writes: > > [...] > > > Try using your function with a filter. This filter might work: > > org-export-filter-headline-functions. Of course it goes without saying > > you will have to update your function. > > Thanks Suvayu. It is this update that I need hel

Re: [O] URGENT Need help fixing beamer exporting, can someone jump on IRC?

2013-03-05 Thread Achim Gratz
Suvayu Ali writes: > That said, I have noticed something odd about the new exporter and > org-reload. I think with the new exporter after doing org-reload, org > related config is not reloaded properly. Config is not reloaded at all (and never has been), any configuration variables that are alrea

Re: [O] [new exporter] is #+bind supported?

2013-03-05 Thread Achim Gratz
Eric S Fraga writes: > It is rather annoying to have the old org files picked up > automatically. My git copy of org-mode is before anything else in my > =load-path= variable. I know there has been a whole thread on the list > about this but I did not see any solution to this; did I miss one? I

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Eric S Fraga
Suvayu Ali writes: [...] > Try using your function with a filter. This filter might work: > org-export-filter-headline-functions. Of course it goes without saying > you will have to update your function. Thanks Suvayu. It is this update that I need help with! The documentation of that varia

Re: [O] [new exporter] is #+bind supported?

2013-03-05 Thread Eric S Fraga
Achim Gratz writes: > Eric S Fraga ucl.ac.uk> writes: >> Also, what is the difference between =org-latex-pdf-process= and >> =org-latex-to-pdf-process= (note the extra -to in the latter)? One is >> defined in ox-latex and the other in org-latex. > > "These are not the droids you were searching

Re: [O] URGENT Need help fixing beamer exporting, can someone jump on IRC?

2013-03-05 Thread Suvayu Ali
Hi James, On Tue, Mar 05, 2013 at 11:28:35PM +0800, James Harkins wrote: > I had been using C-c C-x ! to reload org after doing a "make" but this > turned out to mess things up pretty badly. I could get reasonable > behavior only by quitting emacs and restarting it. I don't know if > that should b

Re: [O] URGENT Need help fixing beamer exporting, can someone jump on IRC?

2013-03-05 Thread Achim Gratz
James Harkins gmail.com> writes: > I had been using C-c C-x ! to reload org after doing a "make" but this > turned out to mess things up pretty badly. I could get reasonable > behavior only by quitting emacs and restarting it. I don't know if > that should be considered a bug or not. Perhaps I don

Re: [O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Suvayu Ali
On Tue, Mar 05, 2013 at 02:43:30PM +, Eric S Fraga wrote: > Hello, > > I used to use the following to ignore a headline when exporting to PDF: > > #+begin_src emacs-lisp > (defun my-e-latex-headline (headline contents info) > (if (member "ignoreheading" (org-element-property :tags headline)

Re: [O] URGENT Need help fixing beamer exporting, can someone jump on IRC?

2013-03-05 Thread James Harkins
On Tue, Mar 5, 2013 at 11:18 PM, James Harkins wrote: > Hi, sorry to press, but is anyone on the org-mode IRC channel? > > The new beamer exporter has suddenly gotten borked on my system and I > can't restore it. I have class tomorrow morning. This is an emergency. OK, in desperation, I checked o

[O] URGENT Need help fixing beamer exporting, can someone jump on IRC?

2013-03-05 Thread James Harkins
Hi, sorry to press, but is anyone on the org-mode IRC channel? The new beamer exporter has suddenly gotten borked on my system and I can't restore it. I have class tomorrow morning. This is an emergency. This occurred after updating master to test a fix that Bastien pushed. Recalling advice from

[O] [new exporter] ignoring a headline on export to PDF via latex

2013-03-05 Thread Eric S Fraga
Hello, I used to use the following to ignore a headline when exporting to PDF: #+begin_src emacs-lisp (defun my-e-latex-headline (headline contents info) (if (member "ignoreheading" (org-element-property :tags headline)) contents (org-latex-headline headline contents info))) (add-to-list 'o

Re: [O] [new exporter] is #+bind supported?

2013-03-05 Thread Achim Gratz
Eric S Fraga ucl.ac.uk> writes: > Also, what is the difference between =org-latex-pdf-process= and > =org-latex-to-pdf-process= (note the extra -to in the latter)? One is > defined in ox-latex and the other in org-latex. "These are not the droids you were searching for." Nothing defined in the

[O] [new exporter] is #+bind supported?

2013-03-05 Thread Eric S Fraga
Hello, I seem to have some problem with the new exporter taking into account a =#+BIND= directive such as #+bind: org-latex-pdf-process ("pdflatex %b" "bibtex %b" "pdflatex %b" "pdflatex %b") Am I doing something really silly here? I need bibtex to export my org paper to PDF. This used to w

Re: [O] latex listings number-lines problems with new exporter

2013-03-05 Thread Thomas Alexander Gerds
thanks for the fast fix. now, I agree that there is no great need to put a link into the doc-string of org-latex-listings-options. Nicolas Goaziou writes: > Hello, > > Thomas Alexander Gerds writes: > >> using org-mode "7.9.3f" and the new exporter I was desperately >> trying to get line numbe

Re: [O] emacs and orgmode implemented at beta.metaStudio.org

2013-03-05 Thread Nagarjuna G.
On Tue, Mar 5, 2013 at 4:30 PM, Bastien wrote: > Hi, > > "Nagarjuna G." writes: > > > I am happy to inform you that we have implemented a collaboratively > > editable wiki pages using a simple javascript editor based on Jay > > Salvat's MarkItUp. (http://markitup.jaysalvat.com/home/). We forked

[O] [new exporter] #+TOC in beamer export

2013-03-05 Thread Andreas Leha
Hi all, from a recent thread I learned about #+TOC (there's always something new to learn about org mode). I'd like to use it in a beamer document. Here I find it hard to use because it introduces its own frame. My question basically is: How is this supposed to be used in a beamer doc? (And wo

Re: [O] [patch] ox-koma-letter

2013-03-05 Thread Michael Strey
On Tue, Mar 05, 2013 at 01:23:40PM +0100, Rasmus wrote: [...] > What happens to headlines without a tag? Would they be > read as part of the body or would untagged headliens just be ignored? Untagged sections shall be treated as body. Updated proposal: #+BEGIN_SRC org #+LATEX_CLASS: letter #+

[O] [new exporter] latex-date-timestamp-format not adhering #+LANGUAGE

2013-03-05 Thread Andreas Leha
Hi all, I'd very much like to see org-latex-timestamp-format adhere to a possibly present #+LANGUAGE setting. If I set org-latex-timestamp-format to "%A, %Y-%m-%d" the following org file produces "Donnerstag, 2013-03-07" on my system, where I'd prefer "Thursday, 2013-03-07". #+begin_src org #+TI

Re: [O] [patch] ox-koma-letter

2013-03-05 Thread Rasmus
Michael Strey writes: > Here is a draft proposal for a user interface using Nicola's > suggestion: Looks nice. What happens to headlines without a tag? Would they be read as part of the body or would untagged headliens just be ignored? –Rasmus -- This is the kind of tedious nonsense up with

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Dear Bastien, The error > Wrong type argument: listp, t was due to the following line (add-hook 'org-mode-hook 'predictive-mode) which was there in the .emacs file. While predictive mode is on [without (add-hook 'org-mode-hook 'predictive-mode) in .emacs] in org-mode buffer, C-c C-e p produce

Re: [O] latex listings number-lines problems with new exporter

2013-03-05 Thread Nicolas Goaziou
Hello, Thomas Alexander Gerds writes: > using org-mode "7.9.3f" and the new exporter I was desperately trying to > get line numbers back for exported R code blocks using the latex listing > package. first I tried > > (setq org-latex-listings-options > '(("basicstyle" "\\small") > ("num

Re: [O] emacs and orgmode implemented at beta.metaStudio.org

2013-03-05 Thread Bastien
Hi, "Nagarjuna G." writes: > I am happy to inform you that we have implemented a collaboratively > editable wiki pages using a simple javascript editor based on Jay > Salvat's MarkItUp. (http://markitup.jaysalvat.com/home/).  We forked > it to create orgitdown (https://github.com/gnowgi/orgitdow

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Dear Bastien, > (add-to-list 'predictive-major-mode-alist '(org-mode . predictive-setup-latex)) This works for latex keyword suggestion in org-mode buffer but while trying to pdf export, I am getting the following error. Wrong type argument: listp, t Thanks ---

Re: [O] [patch] ox-koma-letter

2013-03-05 Thread Michael Strey
Hello, On Mon, Mar 04, 2013 at 09:38:38PM +0100, Nicolas Goaziou wrote: [...] > Headlines are also possible, with a :location: property, which could be > set to, e.g. "closing". See also: > > http://orgmode.org/worg/org-tutorials/org-e-groff-documentation.html > > for a syntax based on headl

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Hi Bastien, >(add-to-list 'predictive-major-mode-alist '(org-mode . predictive-setup-latex)) This one works :) Thanks a lot. --- Sanjib Sikder

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: > Yes, exactly, I wanted to mean this. Maybe: (add-to-list 'predictive-major-mode-alist '(org-mode . predictive-setup-latex)) Or (add-hook 'org-mode-hook 'predictive-setup-latex) Toby is on this list, he'll perhaps confirm/correct. Another idea

[O] latex listings number-lines problems with new exporter

2013-03-05 Thread Thomas Alexander Gerds
Hi using org-mode "7.9.3f" and the new exporter I was desperately trying to get line numbers back for exported R code blocks using the latex listing package. first I tried (setq org-latex-listings-options '(("basicstyle" "\\small") ("numbers" "left"))) which gives , | \lstset{bas

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Hi Suvayu, > I think what he means is that predictive _does not_ suggest LaTeX keywords inside an org-mode buffer. Yes, exactly, I wanted to mean this. Thanks - *Sanjib Sikder *

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Hi Bastien, > Do you mean: "once I write some LaTeX keywords in an org-mode buffer, it only suggests LaTeX keywords (and no english words) for the rest of the session?" I am writing my thesis in org-mode. My thesis consists of equations. So in my thesis.org file, I have latex codes also. I do la

Re: [O] [patch] ox-koma-letter

2013-03-05 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > Nicolas Goaziou writes: > >> Headlines are also possible, with a :location: property, which could be >> set to, e.g. "closing". See also: >> >> http://orgmode.org/worg/org-tutorials/org-e-groff-documentation.html >> >> for a syntax based on headlines. >> >> Anothe

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Suvayu Ali
Hi Bastien and Sanjib, On Tue, Mar 05, 2013 at 10:44:55AM +0100, Bastien wrote: > Hi Sanjib, > > Sanjib Sikder writes: > > > I have installed "Predictive" package. It is working fine for normal > > English words while working in org-mode. When I am writing few latex > > codes in org-mode, it is

Re: [O] Predictive for Latex in org-mode

2013-03-05 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: > I have installed "Predictive" package. It is working fine for normal > English words while working in org-mode. When I am writing few latex > codes in org-mode, it is not suggesting latex keywords it seems. I > have added the following in .emacs. I'm not sure

[O] Predictive for Latex in org-mode

2013-03-05 Thread Sanjib Sikder
Hi, I have installed "Predictive" package. It is working fine for normal English words while working in org-mode. When I am writing few latex codes in org-mode, it is not suggesting latex keywords it seems. I have added the following in .emacs. ;;predictive (add-to-list 'load-path "~/.emacs.d/pre

Re: [O] Tips for using orgmode + ledger to record events?

2013-03-05 Thread Eric S Fraga
Viktor Rosenfeld writes: [...] > Going over you original reply, I was wondering how you add to blocks > such as <> which you reference in your report statement. Hi Viktor, I have named blocks which I subsequently edit using =C-c '= which brings up the block in Ledger mode. By having everythin

Re: [O] latex export of unnumbered sections

2013-03-05 Thread Sebastian Hofer
At Mon, 04 Mar 2013 21:21:54 +0100, Nicolas Goaziou wrote: > > Hello, > > Sebastian Hofer writes: > > > Is there a particular reason why unnumbered sections are exported to > > latex including the title in first (optional) argument if there is no > > * present? To clarify a bit: A sectioning st

Re: [O] [patch] ox-koma-letter

2013-03-05 Thread Alan Schmitt
Hello, Nicolas Goaziou writes: > Headlines are also possible, with a :location: property, which could be > set to, e.g. "closing". See also: > > http://orgmode.org/worg/org-tutorials/org-e-groff-documentation.html > > for a syntax based on headlines. > > Another possibility is to use a special

Re: [O] New html exporter and filters

2013-03-05 Thread Nicolas Goaziou
Hello, Rick Frankel writes: > I seem to have reached the limit of my emacs-fu. I am looking at > adding XOXO output to the S5 exporter (S5 has built-in support for > XOXO structured documents) and was trying to use an element (headline) > filter to modify the document structure. I am also trying