Hello,
Luis Anaya <[email protected]> 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