emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Org mode export to Groff MM. Feature Freeze


From: Nicolas Goaziou
Subject: Re: [O] Org mode export to Groff MM. Feature Freeze
Date: Tue, 17 Jul 2012 09:50:34 +0200

Hello,

Luis Anaya <address@hidden> writes:

>    - The change with the largest imapct on my code had to do with 
>      the BEGIN_GROFF/END_GROFF pairs in which now invokes the special 
>      block function and process the enclosed text through the plain-text 
>      function. Originally these were passed through without the
>      invocation of the plain text function. 
>
>      I had to remove all the text pre-processing being that it was causing
>      problems in the execution of GROFF macros. I do not think that
>      doing this will hurt (much) because of the GROFF  markup syntax.
>      For instance:
>      
>      TeX/LaTeX looks like this:
>         \begin{center} 
>         Blah 
>         \end 
>      while GROFF looks like this. 
>         .DS C
>         Blah
>         .DE
>
>     French quotations are not supported now because of this change, quotes are
>     significant in GROFF for many things and I cannot translate those
>     because GROFF will fail with a syntax error. 

You just have to put

  (add-to-list 'org-element-block-name-alist 
               '("GROFF" . org-element-export-block-parser))

in org-e-groff.el so BEGIN_GROFF/END_GROFF blocks are treated as export
blocks again. No need to remove anything in your text pre-processing
because of this.


Regards,

-- 
Nicolas Goaziou



reply via email to

[Prev in Thread] Current Thread [Next in Thread]