ox: Change order of retured elements in `org-export-get-previous-element'
[org-mode.git] / contrib / lisp / ox-groff.el
blob62beef71a6417ca6dd1ed8f32c772f9654e7039b
1 ;; ox-groff.el --- Groff Back-End for Org Export Engine
3 ;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Author: Luis R Anaya <papoanaya aroba hot mail punto com>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;;
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
22 ;;; Commentary:
24 ;; This library implements a Groff Memorandum Macro back-end for Org
25 ;; generic exporter.
27 ;; To test it, run
29 ;; M-: (org-export-to-buffer 'groff "*Test Groff*") RET
31 ;; in an org-mode buffer then switch to the buffer to see the Groff
32 ;; export. See ox.el for more details on how this exporter works.
34 ;; It introduces two new buffer keywords: "GROFF_CLASS" and
35 ;; "GROFF_CLASS_OPTIONS".
37 ;;; Code:
39 (eval-when-compile (require 'cl))
40 (require 'ox)
42 (defvar orgtbl-exp-regexp)
45 ;;; Define Back-End
47 (org-export-define-backend groff
48 ((bold . org-groff-bold)
49 (center-block . org-groff-center-block)
50 (clock . org-groff-clock)
51 (code . org-groff-code)
52 (comment . (lambda (&rest args) ""))
53 (comment-block . (lambda (&rest args) ""))
54 (drawer . org-groff-drawer)
55 (dynamic-block . org-groff-dynamic-block)
56 (entity . org-groff-entity)
57 (example-block . org-groff-example-block)
58 (export-block . org-groff-export-block)
59 (export-snippet . org-groff-export-snippet)
60 (fixed-width . org-groff-fixed-width)
61 (footnote-definition . org-groff-footnote-definition)
62 (footnote-reference . org-groff-footnote-reference)
63 (headline . org-groff-headline)
64 (horizontal-rule . org-groff-horizontal-rule)
65 (inline-src-block . org-groff-inline-src-block)
66 (inlinetask . org-groff-inlinetask)
67 (italic . org-groff-italic)
68 (item . org-groff-item)
69 (keyword . org-groff-keyword)
70 (line-break . org-groff-line-break)
71 (link . org-groff-link)
72 (paragraph . org-groff-paragraph)
73 (plain-list . org-groff-plain-list)
74 (plain-text . org-groff-plain-text)
75 (planning . org-groff-planning)
76 (property-drawer . (lambda (&rest args) ""))
77 (quote-block . org-groff-quote-block)
78 (quote-section . org-groff-quote-section)
79 (radio-target . org-groff-radio-target)
80 (section . org-groff-section)
81 (special-block . org-groff-special-block)
82 (src-block . org-groff-src-block)
83 (statistics-cookie . org-groff-statistics-cookie)
84 (strike-through . org-groff-strike-through)
85 (subscript . org-groff-subscript)
86 (superscript . org-groff-superscript)
87 (table . org-groff-table)
88 (table-cell . org-groff-table-cell)
89 (table-row . org-groff-table-row)
90 (target . org-groff-target)
91 (template . org-groff-template)
92 (timestamp . org-groff-timestamp)
93 (underline . org-groff-underline)
94 (verbatim . org-groff-verbatim)
95 (verse-block . org-groff-verse-block))
96 :export-block "GROFF"
97 :menu-entry
98 (?g "Export to GROFF"
99 ((?g "As GROFF file" org-groff-export-to-groff)
100 (?p "As PDF file" org-groff-export-to-pdf)
101 (?o "As PDF file and open"
102 (lambda (a s v b)
103 (if a (org-groff-export-to-pdf t s v b)
104 (org-open-file (org-groff-export-to-pdf nil s v b)))))))
105 :options-alist
106 ((:groff-class "GROFF_CLASS" nil org-groff-default-class t)
107 (:groff-class-options "GROFF_CLASS_OPTIONS" nil nil t)
108 (:groff-header-extra "GROFF_HEADER" nil nil newline)))
112 ;;; User Configurable Variables
114 (defgroup org-export-groff nil
115 "Options for exporting Org mode files to Groff."
116 :tag "Org Export Groff"
117 :group 'org-export)
119 ;;; Preamble
121 (defcustom org-groff-default-class "internal"
122 "The default Groff class."
123 :group 'org-export-groff
124 :type '(string :tag "Groff class"))
126 (defcustom org-groff-classes
127 '(("file" ".MT 1"
128 (:heading 'default :type "memo" :last-section "toc"))
129 ("internal" ".MT 0"
130 (:heading 'default :type "memo" :last-section "toc"))
131 ("programmer" ".MT 2"
132 (:heading 'default :type "memo" :last-section "toc"))
133 ("engineer" ".MT 3"
134 (:heading 'default :type "memo" :last-section "toc"))
135 ("external" ".MT 4"
136 (:heading 'default :type "memo" :last-section "toc"))
137 ("letter" ".MT 5"
138 (:heading 'default :type "memo" :last-section "sign"))
139 ("custom" ".so file"
140 (:heading custom-function :type "custom" :last-section "toc"))
141 ("dummy" ""
142 (:heading 'default :type "memo"))
143 ("ms" "ms"
144 (:heading 'default :type "cover" :last-section "toc"))
145 ("se_ms" "se_ms"
146 (:heading 'default :type "cover" :last-section "toc"))
147 ("block" "BL"
148 (:heading 'default :type "letter" :last-section "sign"))
149 ("semiblock" "SB"
150 (:heading 'default :type "letter" :last-section "sign"))
151 ("fullblock" "FB"
152 (:heading 'default :type "letter" :last-section "sign"))
153 ("simplified" "SP"
154 (:heading 'default :type "letter" :last-section "sign"))
155 ("none" "" (:heading 'default :type "custom")))
157 ;; none means, no Cover or Memorandum Type and no calls to AU, AT, ND and TL
158 ;; This is to facilitate the creation of custom pages.
160 ;; dummy means, no Cover or Memorandum Type but calls to AU, AT, ND and TL
161 ;; are made. This is to facilitate Abstract Insertion.
163 "This list describes the attributes for the documents being created.
164 It allows for the creation of new "
165 :group 'org-export-groff
166 :type '(repeat
167 (list (string :tag "Document Type")
168 (string :tag "Header")
169 (repeat :tag "Options" :inline t
170 (choice
171 (list :tag "Heading")
172 (function :tag "Hook computing sectioning"))))))
174 ;;; Headline
176 (defconst org-groff-special-tags
177 '("FROM" "TO" "ABSTRACT" "APPENDIX" "BODY" "NS"))
179 (defcustom org-groff-format-headline-function nil
180 "Function to format headline text.
182 This function will be called with 5 arguments:
183 TODO the todo keyword (string or nil).
184 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
185 PRIORITY the priority of the headline (integer or nil)
186 TEXT the main headline text (string).
187 TAGS the tags as a list of strings (list of strings or nil).
189 The function result will be used in the section format string.
191 As an example, one could set the variable to the following, in
192 order to reproduce the default set-up:
194 \(defun org-groff-format-headline (todo todo-type priority text tags)
195 \"Default format function for a headline.\"
196 \(concat (when todo
197 \(format \"\\fB%s\\fP \" todo))
198 \(when priority
199 \(format \"[\\#%c] \" priority))
200 text
201 \(when tags
202 \(format \" %s \"
203 \(mapconcat 'identity tags \":\"))))"
204 :group 'org-export-groff
205 :type 'function)
207 ;;; Timestamps
209 (defcustom org-groff-active-timestamp-format "\\fI%s\\fP"
210 "A printf format string to be applied to active timestamps."
211 :group 'org-export-groff
212 :type 'string)
214 (defcustom org-groff-inactive-timestamp-format "\\fI%s\\fP"
215 "A printf format string to be applied to inactive timestamps."
216 :group 'org-export-groff
217 :type 'string)
219 (defcustom org-groff-diary-timestamp-format "\\fI%s\\fP"
220 "A printf format string to be applied to diary timestamps."
221 :group 'org-export-groff
222 :type 'string)
224 ;;; Links
226 (defcustom org-groff-inline-image-rules
227 '(("file" . "\\.\\(jpg\\|png\\|pdf\\|ps\\|eps\\|pic\\)\\'")
228 ("fuzzy" . "\\.\\(jpg\\|png\\|pdf\\|ps\\|eps\\|pic\\)\\'"))
229 "Rules characterizing image files that can be inlined into Groff.
231 A rule consists in an association whose key is the type of link
232 to consider, and value is a regexp that will be matched against
233 link's path.
235 Note that, by default, the image extensions actually allowed
236 depend on the way the Groff file is processed. When used with
237 pdfgroff, pdf, jpg and png images are OK. When processing
238 through dvi to Postscript, only ps and eps are allowed. The
239 default we use here encompasses both."
240 :group 'org-export-groff
241 :type '(alist :key-type (string :tag "Type")
242 :value-type (regexp :tag "Path")))
244 (defcustom org-groff-link-with-unknown-path-format "\\fI%s\\fP"
245 "Format string for links with unknown path type."
246 :group 'org-export-groff
247 :type 'string)
249 ;;; Tables
251 (defcustom org-groff-tables-centered t
252 "When non-nil, tables are exported in a center environment."
253 :group 'org-export-groff
254 :type 'boolean)
256 (defcustom org-groff-tables-verbatim nil
257 "When non-nil, tables are exported verbatim."
258 :group 'org-export-groff
259 :type 'boolean)
261 (defcustom org-groff-table-scientific-notation "%sE%s"
262 "Format string to display numbers in scientific notation.
263 The format should have \"%s\" twice, for mantissa and exponent
264 \(i.e. \"%s\\\\times10^{%s}\").
266 When nil, no transformation is made."
267 :group 'org-export-groff
268 :type '(choice
269 (string :tag "Format string")
270 (const :tag "No formatting")))
272 ;;; Text markup
274 (defcustom org-groff-text-markup-alist
275 '((bold . "\\fB%s\\fP")
276 (code . "\\fC%s\\fP")
277 (italic . "\\fI%s\\fP")
278 (strike-through . "\\fC%s\\fP") ; Strike through and underline
279 (underline . "\\fI%s\\fP") ; need to be revised.
280 (verbatim . "protectedtexttt"))
281 "Alist of Groff expressions to convert text markup.
283 The key must be a symbol among `bold', `code', `italic',
284 `strike-through', `underline' and `verbatim'. The value is
285 a formatting string to wrap fontified text with it.
287 If no association can be found for a given markup, text will be
288 returned as-is."
289 :group 'org-export-groff
290 :type 'alist
291 :options '(bold code italic strike-through underline verbatim))
293 ;;; Drawers
295 (defcustom org-groff-format-drawer-function nil
296 "Function called to format a drawer in Groff code.
298 The function must accept two parameters:
299 NAME the drawer name, like \"LOGBOOK\"
300 CONTENTS the contents of the drawer.
302 The function should return the string to be exported.
304 For example, the variable could be set to the following function
305 in order to mimic default behaviour:
307 \(defun org-groff-format-drawer-default \(name contents\)
308 \"Format a drawer element for Groff export.\"
309 contents\)"
310 :group 'org-export-groff
311 :type 'function)
313 ;;; Inlinetasks
315 (defcustom org-groff-format-inlinetask-function nil
316 "Function called to format an inlinetask in Groff code.
318 The function must accept six parameters:
319 TODO the todo keyword, as a string
320 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
321 PRIORITY the inlinetask priority, as a string
322 NAME the inlinetask name, as a string.
323 TAGS the inlinetask tags, as a list of strings.
324 CONTENTS the contents of the inlinetask, as a string.
326 The function should return the string to be exported.
328 For example, the variable could be set to the following function
329 in order to mimic default behaviour:
331 \(defun org-groff-format-inlinetask \(todo type priority name tags contents\)
332 \"Format an inline task element for Groff export.\"
333 \(let ((full-title
334 \(concat
335 \(when todo
336 \(format \"\\fB%s\\fP \" todo))
337 \(when priority (format \"[\\#%c] \" priority))
338 title
339 \(when tags
340 \(format \":%s:\"
341 \(mapconcat 'identity tags \":\")))))
342 \(format (concat \".DS L\\n\"
343 \"%s\\n\\n\"
344 \"%s\"
345 \".DE\")
346 full-title contents))"
347 :group 'org-export-groff
348 :type 'function)
350 ;; Src blocks
352 (defcustom org-groff-source-highlight nil
353 "Use GNU source highlight to embellish source blocks "
354 :group 'org-export-groff
355 :type 'boolean)
357 (defcustom org-groff-source-highlight-langs
358 '((emacs-lisp "lisp") (lisp "lisp") (clojure "lisp")
359 (scheme "scheme")
360 (c "c") (cc "cpp") (csharp "csharp") (d "d")
361 (fortran "fortran") (cobol "cobol") (pascal "pascal")
362 (ada "ada") (asm "asm")
363 (perl "perl") (cperl "perl")
364 (python "python") (ruby "ruby") (tcl "tcl") (lua "lua")
365 (java "java") (javascript "javascript")
366 (tex "latex")
367 (shell-script "sh") (awk "awk") (diff "diff") (m4 "m4")
368 (ocaml "caml") (caml "caml")
369 (sql "sql") (sqlite "sql")
370 (html "html") (css "css") (xml "xml")
371 (bat "bat") (bison "bison") (clipper "clipper")
372 (ldap "ldap") (opa "opa")
373 (php "php") (postscript "postscript") (prolog "prolog")
374 (properties "properties") (makefile "makefile")
375 (tml "tml") (vala "vala") (vbscript "vbscript") (xorg "xorg"))
376 "Alist mapping languages to their listing language counterpart.
377 The key is a symbol, the major mode symbol without the \"-mode\".
378 The value is the string that should be inserted as the language
379 parameter for the listings package. If the mode name and the
380 listings name are the same, the language does not need an entry
381 in this list - but it does not hurt if it is present."
382 :group 'org-export-groff
383 :type '(repeat
384 (list
385 (symbol :tag "Major mode ")
386 (string :tag "Listings language"))))
388 (defcustom org-groff-source-highlight-options nil
389 "Association list of options for the groff listings package.
391 These options are supplied as a comma-separated list to the
392 \\lstset command. Each element of the association list should be
393 a list containing two strings: the name of the option, and the
394 value. For example,
396 (setq org-groff-source-highlight-options
397 '((\"basicstyle\" \"\\small\")
398 (\"keywordstyle\" \"\\color{black}\\bfseries\\underbar\")))
400 will typeset the code in a small size font with underlined, bold
401 black keywords.
403 Note that the same options will be applied to blocks of all
404 languages."
405 :group 'org-export-groff
406 :type '(repeat
407 (list
408 (string :tag "Listings option name ")
409 (string :tag "Listings option value"))))
411 (defvar org-groff-custom-lang-environments nil
412 "Alist mapping languages to language-specific Groff environments.
414 It is used during export of src blocks by the listings and
415 groff packages. For example,
417 \(setq org-groff-custom-lang-environments
418 '\(\(python \"pythoncode\"\)\)\)
420 would have the effect that if org encounters begin_src python
421 during groff export it will use pythoncode as the source-highlight
422 language.")
424 ;;; Plain text
426 (defcustom org-groff-special-char
427 '(("(c)" . "\\\\(co")
428 ("(tm)" . "\\\\(tm")
429 ("(rg)" . "\\\\(rg"))
430 "CONS list in which the value of the car
431 is replace on the value of the CDR. "
432 :group 'org-export-groff
433 :type '(list
434 (cons :tag "Character Subtitute"
435 (string :tag "Original Character Group")
436 (string :tag "Replacement Character"))))
438 ;;; Compilation
440 (defcustom org-groff-pdf-process
441 '("pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"
442 "pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"
443 "pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf")
445 "Commands to process a Groff file to a PDF file.
446 This is a list of strings, each of them will be given to the
447 shell as a command. %f in the command will be replaced by the
448 full file name, %b by the file base name \(i.e. without
449 extension) and %o by the base directory of the file."
450 :group 'org-export-pdf
451 :type '(choice
452 (repeat :tag "Shell command sequence"
453 (string :tag "Shell command"))
454 (const :tag "2 runs of pdfgroff"
455 ("pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"
456 "pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"))
457 (const :tag "3 runs of pdfgroff"
458 ("pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"
459 "pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"
460 "pic %f | tbl | eqn | groff -mm | ps2pdf - > %b.pdf"))
461 (function)))
463 (defcustom org-groff-logfiles-extensions
464 '("aux" "idx" "log" "out" "toc" "nav" "snm" "vrb")
465 "The list of file extensions to consider as Groff logfiles."
466 :group 'org-export-groff
467 :type '(repeat (string :tag "Extension")))
469 (defcustom org-groff-remove-logfiles t
470 "Non-nil means remove the logfiles produced by PDF production.
471 These are the .aux, .log, .out, and .toc files."
472 :group 'org-export-groff
473 :type 'boolean)
475 (defcustom org-groff-organization "Org User"
476 "Name of the organization used to populate the .AF command."
477 :group 'org-export-groff
478 :type 'string)
480 (defcustom org-groff-raster-to-ps nil
481 "Command used to convert raster to EPS. Nil for no conversion. Make sure that
482 `org-groff-inline-image-rules' is adjusted accordingly if not conversion is being
483 done. In this case, remove the entries for jpg and png in the file and fuzzy lists."
484 :group 'org-export-groff
485 :type '(choice
486 (repeat :tag "Shell Command Sequence" (string :tag "Shell Command"))
487 (const :tag "sam2p" "a=%s;b=%s;sam2p ${a} ${b} ;grep -v BeginData ${b} > b_${b};mv b_${b} ${b}" )
488 (const :tag "NetPNM" "a=%s;b=%s;pngtopnm ${a} | pnmtops -noturn > ${b}" )
489 (const :tag "None" nil)))
491 (defvar org-groff-registered-references nil)
492 (defvar org-groff-special-content nil)
496 ;;; Internal Functions
498 (defun org-groff--caption/label-string (element info)
499 "Return caption and label Groff string for ELEMENT.
501 INFO is a plist holding contextual information. If there's no
502 caption nor label, return the empty string.
504 For non-floats, see `org-groff--wrap-label'."
505 (let ((main (org-export-get-caption element))
506 (short (org-export-get-caption element t))
507 (label (org-element-property :name element)))
508 (cond ((and (not main) (not label)) "")
509 ((not main) (format "\\fI%s\\fP" label))
510 ;; Option caption format with short name.
511 (short (format "%s\n.br\n - %s\n"
512 (org-export-data short info)
513 (org-export-data main info)))
514 ;; Standard caption format.
515 (t (format "\\fR%s\\fP" (org-export-data main info))))))
517 (defun org-groff--wrap-label (element output)
518 "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
519 This function shouldn't be used for floats. See
520 `org-groff--caption/label-string'."
521 (let ((label (org-element-property :name element)))
522 (if (or (not output) (not label) (string= output "") (string= label ""))
523 output
524 (concat (format "%s\n.br\n" label) output))))
526 (defun org-groff--text-markup (text markup)
527 "Format TEXT depending on MARKUP text markup.
528 See `org-groff-text-markup-alist' for details."
529 (let ((fmt (cdr (assq markup org-groff-text-markup-alist))))
530 (cond
531 ;; No format string: Return raw text.
532 ((not fmt) text)
533 ((string= "protectedtexttt" fmt)
534 (let ((start 0)
535 (trans '(("\\" . "\\")))
536 (rtn "")
537 char)
538 (while (string-match "[\\{}$%&_#~^]" text)
539 (setq char (match-string 0 text))
540 (if (> (match-beginning 0) 0)
541 (setq rtn (concat rtn (substring text 0 (match-beginning 0)))))
542 (setq text (substring text (1+ (match-beginning 0))))
543 (setq char (or (cdr (assoc char trans)) (concat "\\" char))
544 rtn (concat rtn char)))
545 (setq text (concat rtn text))
546 (format "\\fC%s\\fP" text)))
547 ;; Else use format string.
548 (t (format fmt text)))))
551 (defun org-groff--get-tagged-content (tag info)
552 (cdr (assoc tag org-groff-special-content)))
554 (defun org-groff--mt-head (title contents attr info)
555 (concat
557 ;; 1. Insert Organization
558 (let ((firm-option (plist-get attr :firm)))
559 (cond
560 ((stringp firm-option)
561 (format ".AF \"%s\" \n" firm-option))
562 (t (format ".AF \"%s\" \n" (or org-groff-organization "")))))
564 ;; 2. Title
565 (let ((subtitle1 (plist-get attr :subtitle1))
566 (subtitle2 (plist-get attr :subtitle2)))
568 (cond
569 ((string= "" title)
570 (format ".TL \"%s\" \"%s\" \n%s\n"
571 (or subtitle1 "")
572 (or subtitle2 "") " "))
574 ((not (or subtitle1 subtitle2))
575 (format ".TL\n%s\n"
576 (or title "")))
578 (format ".TL \"%s\" \"%s \" \n%s\n"
579 (or subtitle1 "")
580 (or subtitle2 "") title))))
582 ;; 3. Author.
583 ;; In Groff, .AU *MUST* be placed after .TL
584 ;; If From, populate with data from From else
586 (let ((author (and (plist-get info :with-author)
587 (let ((auth (plist-get info :author)))
588 (and auth (org-export-data auth info)))))
589 (email (and (plist-get info :with-email)
590 (org-export-data (plist-get info :email) info)))
591 (from-data (org-groff--get-tagged-content "FROM" info))
593 (to-data (org-groff--get-tagged-content "TO" info)))
595 (cond
596 ((and author from-data)
597 (let ((au-line
598 (mapconcat
599 (lambda (from-line)
600 (format " \"%s\" " from-line))
601 (split-string
602 (setq from-data
603 (replace-regexp-in-string "\\.P\n" "" from-data)) "\n") "")))
605 (concat
606 (format ".AU \"%s\" " author) au-line "\n")))
608 ((and author email (not (string= "" email)))
609 (format ".AU \"%s\" \"%s\"\n" author email))
611 (author (format ".AU \"%s\"\n" author))
613 (t ".AU \"\" \n")))
616 ;; 4. Author Title, if present
617 (let ((at-item (plist-get attr :author-title)))
618 (if (and at-item (stringp at-item))
619 (format ".AT \"%s\" \n" at-item)
620 ""))
622 ;; 5. Date.
623 (when (plist-get info :with-date)
624 (let ((date (org-export-data (plist-get info :date) info)))
625 (and date (format ".ND \"%s\"\n" date))))
628 ;; If Abstract, then Populate Abstract
631 (let ((abstract-data (org-groff--get-tagged-content "ABSTRACT" info))
632 (to-data (org-groff--get-tagged-content "TO" info)))
633 (cond
634 (abstract-data
635 (format ".AS\n%s\n.AE\n" abstract-data))
636 (to-data
637 (format ".AS\n%s\n.AE\n" to-data))))))
639 (defun org-groff--letter-head (title contents attr info)
640 (let ((author (and (plist-get info :with-author)
641 (let ((auth (plist-get info :author)))
642 (and auth (org-export-data auth info)))))
643 (email (and (plist-get info :with-email)
644 (org-export-data (plist-get info :email) info)))
645 (from-data (org-groff--get-tagged-content "FROM" info))
646 (at-item (plist-get attr :author-title))
647 (to-data (org-groff--get-tagged-content "TO" info)))
650 ;; If FROM then get data from FROM
651 (if from-data
652 (setq from-data
653 (replace-regexp-in-string "\\.P\n" "" from-data))
654 (setq from-data ""))
656 (if to-data
657 (setq to-data
658 (replace-regexp-in-string "\\.P\n" "" to-data))
659 (setq from-data ""))
661 (concat
662 (cond
663 (from-data
664 (format ".WA \"%s\" \"%s\" \n%s\n.WE\n" author (or at-item "") from-data))
665 ((and author email (not (string= "" email)))
666 (format ".WA \"%s\"\n \"%s\"\n.WE\n" author email))
667 (author (format ".WA \"%s\"\n.WE\n" author))
668 (t ".WA \"\" \n.WE\n"))
670 ;; If TO then get data from TO
672 (when to-data
673 (format ".IA \n%s\n.IE\n" to-data)))))
676 ;;; Template
678 (defun org-groff-template (contents info)
679 "Return complete document string after Groff conversion.
680 CONTENTS is the transcoded contents string. INFO is a plist
681 holding export options."
682 (let* ((title (org-export-data (plist-get info :title) info))
683 (attr (read
684 (format "(%s)"
685 (mapconcat
686 #'identity
687 (list (plist-get info :groff-class-options))
688 " "))))
689 (class (plist-get info :groff-class))
690 (class-options (plist-get info :groff-class-options))
691 (classes (assoc class org-groff-classes))
692 (classes-options (car (last classes)))
693 (heading-option (plist-get classes-options :heading))
694 (type-option (plist-get classes-options :type))
695 (last-option (plist-get classes-options :last-section))
696 (hyphenate (plist-get attr :hyphenate))
697 (justify-right (plist-get attr :justify-right))
699 (document-class-string
700 (progn
701 (org-element-normalize-string
702 (let* ((header (nth 1 (assoc class org-groff-classes)))
703 (document-class-item (if (stringp header) header "")))
704 document-class-item)))))
707 (concat
708 (if justify-right
709 (case justify-right
710 ('yes ".SA 1 \n")
711 ('no ".SA 0 \n")
712 (t ""))
715 (if hyphenate
716 (case hyphenate
717 ('yes ".nr Hy 1 \n")
718 ('no ".nr Hy 0 \n")
719 (t ""))
722 (cond
723 ((string= type-option "custom") "")
725 ((and (stringp document-class-string)
726 (string= type-option "cover"))
728 (concat
729 (format ".COVER %s\n" document-class-string)
730 (org-groff--mt-head title contents attr info)
731 ".COVEND\n"))
733 ((string= type-option "memo")
734 (concat
735 (org-groff--mt-head title contents attr info)
736 document-class-string))
737 ((string= type-option "letter")
738 (concat
739 (org-groff--letter-head title contents attr info)
740 (let ((sa-item (plist-get attr :salutation))
741 (cn-item (plist-get attr :confidential))
742 (sj-item (plist-get attr :subject))
743 (rn-item (plist-get attr :reference))
744 (at-item (plist-get attr :attention)))
746 (concat
748 (if (stringp sa-item)
749 (format ".LO SA \"%s\" \n" sa-item)
750 ".LO SA\n")
752 (when cn-item
753 (if (stringp cn-item)
754 (format ".LO CN \"%s\"\n" cn-item)
755 ".LO CN\n"))
757 (when (and at-item (stringp at-item))
758 (format ".LO AT \"%s\" \n" at-item))
759 (when (and title rn-item)
760 (format ".LO RN \"%s\"\n" title))
762 (when (and sj-item (stringp sj-item))
763 (format ".LO SJ \"%s\" \n" sj-item))
766 ".LT " document-class-string "\n"))))
768 (t ""))
770 contents
772 (cond
773 ((string= last-option "toc")
774 ".TC")
775 ((string= last-option "sign")
776 (let ((fc-item (plist-get attr :closing)))
777 (concat (if (stringp fc-item)
778 (format ".FC \"%s\" \n" fc-item)
779 ".FC\n")
780 ".SG\n")))
781 (t ""))
783 (progn
784 (mapconcat
785 (lambda (item)
786 (when (string= (car item) "NS")
787 (replace-regexp-in-string
788 "\\.P\n" "" (cdr item))))
789 (reverse org-groff-special-content) "\n")))))
793 ;;; Transcode Functions
795 ;;; Babel Call
797 ;; Babel Calls are ignored.
800 ;;; Bold
802 (defun org-groff-bold (bold contents info)
803 "Transcode BOLD from Org to Groff.
804 CONTENTS is the text with bold markup. INFO is a plist holding
805 contextual information."
806 (org-groff--text-markup contents 'bold))
808 ;;; Center Block
810 (defun org-groff-center-block (center-block contents info)
811 "Transcode a CENTER-BLOCK element from Org to Groff.
812 CONTENTS holds the contents of the center block. INFO is a plist
813 holding contextual information."
814 (org-groff--wrap-label
815 center-block
816 (format ".DS C \n%s\n.DE" contents)))
818 ;;; Clock
820 (defun org-groff-clock (clock contents info)
821 "Transcode a CLOCK element from Org to Groff.
822 CONTENTS is nil. INFO is a plist holding contextual
823 information."
824 (concat
825 (format "\\fB%s\\fP " org-clock-string)
826 (format org-groff-inactive-timestamp-format
827 (concat (org-translate-time
828 (org-element-property :raw-value
829 (org-element-property :value clock)))
830 (let ((time (org-element-property :duration clock)))
831 (and time (format " (%s)" time)))))))
833 ;;; Code
835 (defun org-groff-code (code contents info)
836 "Transcode a CODE object from Org to Groff.
837 CONTENTS is nil. INFO is a plist used as a communication
838 channel."
839 (org-groff--text-markup (org-element-property :value code) 'code))
841 ;;; Comments and Comment Blocks are ignored.
843 ;;; Drawer
845 (defun org-groff-drawer (drawer contents info)
846 "Transcode a DRAWER element from Org to Groff.
847 CONTENTS holds the contents of the block. INFO is a plist
848 holding contextual information."
849 (let* ((name (org-element-property :drawer-name drawer))
850 (output (if (functionp org-groff-format-drawer-function)
851 (funcall org-groff-format-drawer-function
852 name contents)
853 ;; If there's no user defined function: simply
854 ;; display contents of the drawer.
855 contents)))
856 (org-groff--wrap-label drawer output)))
858 ;;; Dynamic Block
860 (defun org-groff-dynamic-block (dynamic-block contents info)
861 "Transcode a DYNAMIC-BLOCK element from Org to Groff.
862 CONTENTS holds the contents of the block. INFO is a plist
863 holding contextual information. See `org-export-data'."
864 (org-groff--wrap-label dynamic-block contents))
866 ;;; Entity
868 (defun org-groff-entity (entity contents info)
869 "Transcode an ENTITY object from Org to Groff.
870 CONTENTS are the definition itself. INFO is a plist holding
871 contextual information."
872 (org-element-property :utf-8 entity))
874 ;;; Example Block
876 (defun org-groff-example-block (example-block contents info)
877 "Transcode an EXAMPLE-BLOCK element from Org to Groff.
878 CONTENTS is nil. INFO is a plist holding contextual
879 information."
880 (org-groff--wrap-label
881 example-block
882 (format ".DS L\n%s\n.DE"
883 (org-export-format-code-default example-block info))))
885 ;;; Export Block
887 (defun org-groff-export-block (export-block contents info)
888 "Transcode a EXPORT-BLOCK element from Org to Groff.
889 CONTENTS is nil. INFO is a plist holding contextual information."
890 (when (string= (org-element-property :type export-block) "GROFF")
891 (org-remove-indentation (org-element-property :value export-block))))
893 ;;; Export Snippet
895 (defun org-groff-export-snippet (export-snippet contents info)
896 "Transcode a EXPORT-SNIPPET object from Org to Groff.
897 CONTENTS is nil. INFO is a plist holding contextual information."
898 (when (eq (org-export-snippet-backend export-snippet) 'groff)
899 (org-element-property :value export-snippet)))
901 ;;; Fixed Width
903 (defun org-groff-fixed-width (fixed-width contents info)
904 "Transcode a FIXED-WIDTH element from Org to Groff.
905 CONTENTS is nil. INFO is a plist holding contextual information."
906 (org-groff--wrap-label
907 fixed-width
908 (format "\\fC\n%s\\fP"
909 (org-remove-indentation
910 (org-element-property :value fixed-width)))))
912 ;;; Footnote Definition
914 ;; Footnote Definitions are ignored.
916 ;; Footnotes are handled automatically in GROFF. Although manual
917 ;; references can be added, not really required.
919 (defun org-groff-footnote-reference (footnote-reference contents info)
920 ;; Changing from info to footnote-reference
921 (let* ((raw (org-export-get-footnote-definition footnote-reference info))
922 (n (org-export-get-footnote-number footnote-reference info))
923 (data (org-trim (org-export-data raw info)))
924 (ref-id (plist-get (nth 1 footnote-reference) :label)))
925 ;; It is a reference
926 (if (string-match "fn:rl" ref-id)
927 (if (member ref-id org-groff-registered-references)
928 (format "\\*[%s]" ref-id)
929 (progn
930 (push ref-id org-groff-registered-references)
931 (format "\\*(Rf\n.RS \"%s\" \n%s\n.RF\n" ref-id data)))
932 ;; else it is a footnote
933 (format "\\u\\s-2%s\\d\\s+2\n.FS %s\n%s\n.FE\n" n n data))))
935 ;;; Headline
937 (defun org-groff-headline (headline contents info)
938 "Transcode a HEADLINE element from Org to Groff.
939 CONTENTS holds the contents of the headline. INFO is a plist
940 holding contextual information."
941 (let* ((class (plist-get info :groff-class))
942 (level (org-export-get-relative-level headline info))
943 (numberedp (org-export-numbered-headline-p headline info))
944 ;; Section formatting will set two placeholders: one for the
945 ;; title and the other for the contents.
946 (classes (assoc class org-groff-classes))
947 (classes-options (car (last classes)))
948 (heading-option (plist-get classes-options :heading))
949 (section-fmt
950 (progn
951 (cond
952 ((and (symbolp heading-option)
953 (fboundp heading-option))
954 (funcall heading-option level numberedp))
955 ((> level 7) nil)
956 (t (if numberedp
957 (concat ".H " (number-to-string level) " \"%s\"\n%s")
958 ".HU \"%s\"\n%s")))))
959 ;; End of section-fmt
960 (text (org-export-data (org-element-property :title headline) info))
961 (todo
962 (and (plist-get info :with-todo-keywords)
963 (let ((todo (org-element-property :todo-keyword headline)))
964 (and todo (org-export-data todo info)))))
965 (todo-type (and todo (org-element-property :todo-type headline)))
966 (tags (and (plist-get info :with-tags)
967 (org-export-get-tags headline info)))
968 (priority (and (plist-get info :with-priority)
969 (org-element-property :priority headline)))
970 ;; Create the headline text along with a no-tag version. The
971 ;; latter is required to remove tags from table of contents.
972 (full-text (if (functionp org-groff-format-headline-function)
973 ;; User-defined formatting function.
974 (funcall org-groff-format-headline-function
975 todo todo-type priority text tags)
976 ;; Default formatting.
977 (concat
978 (when todo
979 (format "\\fB%s\\fP " todo))
980 (when priority (format " [\\#%c] " priority))
981 text
982 (when tags
983 (format " \\fC:%s:\\fP "
984 (mapconcat 'identity tags ":"))))))
985 (full-text-no-tag
986 (if (functionp org-groff-format-headline-function)
987 ;; User-defined formatting function.
988 (funcall org-groff-format-headline-function
989 todo todo-type priority text nil)
990 ;; Default formatting.
991 (concat
992 (when todo (format "\\fB%s\\fP " todo))
993 (when priority (format " [\\#%c] " priority))
994 text)))
995 ;; Associate some \label to the headline for internal links.
996 ;; (headline-label
997 ;; (format "\\label{sec-%s}\n"
998 ;; (mapconcat 'number-to-string
999 ;; (org-export-get-headline-number headline info)
1000 ;; "-")))
1001 (headline-label "")
1002 (pre-blanks
1003 (make-string (org-element-property :pre-blank headline) 10)))
1005 (cond
1006 ;; Case 1: Special Tag
1007 ((member (car tags) org-groff-special-tags)
1008 (cond
1009 ((string= (car tags) "BODY") contents)
1011 ((string= (car tags) "NS")
1012 (progn
1013 (push (cons (car tags)
1014 (format ".NS \"%s\" 1 \n%s"
1015 (car (org-element-property :title headline))
1016 (or contents " ")))
1017 org-groff-special-content) nil))
1020 (progn
1021 (push (cons (car tags) contents) org-groff-special-content)
1022 nil))))
1024 ;; Case 2: This is a footnote section: ignore it.
1025 ((org-element-property :footnote-section-p headline) nil)
1027 ;; Case 3: This is a deep sub-tree: export it as a list item.
1028 ;; Also export as items headlines for which no section
1029 ;; format has been found.
1030 ((or (not section-fmt) (org-export-low-level-p headline info))
1031 ;; Build the real contents of the sub-tree.
1032 (let ((low-level-body
1033 (concat
1034 ;; If the headline is the first sibling, start a list.
1035 (when (org-export-first-sibling-p headline info)
1036 (format "%s\n" (if numberedp ".AL 1\n" ".DL \n")))
1037 ;; Itemize headline
1038 ".LI\n" full-text "\n" headline-label pre-blanks contents)))
1039 ;; If headline is not the last sibling simply return
1040 ;; LOW-LEVEL-BODY. Otherwise, also close the list, before any
1041 ;; blank line.
1042 (if (not (org-export-last-sibling-p headline info)) low-level-body
1043 (replace-regexp-in-string
1044 "[ \t\n]*\\'"
1045 (concat "\n.LE")
1046 low-level-body))))
1048 ;; Case 4. Standard headline. Export it as a section.
1050 (format section-fmt full-text
1051 (concat headline-label pre-blanks contents))))))
1053 ;;; Horizontal Rule
1054 ;; Not supported
1056 ;;; Inline Babel Call
1058 ;; Inline Babel Calls are ignored.
1060 ;;; Inline Src Block
1062 (defun org-groff-inline-src-block (inline-src-block contents info)
1063 "Transcode an INLINE-SRC-BLOCK element from Org to Groff.
1064 CONTENTS holds the contents of the item. INFO is a plist holding
1065 contextual information."
1066 (let* ((code (org-element-property :value inline-src-block)))
1067 (cond
1068 (org-groff-source-highlight
1069 (let* ((tmpdir (if (featurep 'xemacs)
1070 temp-directory
1071 temporary-file-directory))
1072 (in-file (make-temp-name
1073 (expand-file-name "srchilite" tmpdir)))
1074 (out-file (make-temp-name
1075 (expand-file-name "reshilite" tmpdir)))
1076 (org-lang (org-element-property :language inline-src-block))
1077 (lst-lang (cadr (assq (intern org-lang)
1078 org-groff-source-highlight-langs)))
1080 (cmd (concat (expand-file-name "source-highlight")
1081 " -s " lst-lang
1082 " -f groff_mm_color "
1083 " -i " in-file
1084 " -o " out-file)))
1085 (if lst-lang
1086 (let ((code-block ""))
1087 (with-temp-file in-file (insert code))
1088 (shell-command cmd)
1089 (setq code-block (org-file-contents out-file))
1090 (delete-file in-file)
1091 (delete-file out-file)
1092 code-block)
1093 (format ".DS I\n\\fC\\m[black]%s\\m[]\\fP\n.DE\n"
1094 code))))
1096 ;; Do not use a special package: transcode it verbatim.
1098 (concat ".DS I\n" "\\fC" code "\\fP\n.DE\n")))))
1100 ;;; Inlinetask
1102 (defun org-groff-inlinetask (inlinetask contents info)
1103 "Transcode an INLINETASK element from Org to Groff.
1104 CONTENTS holds the contents of the block. INFO is a plist
1105 holding contextual information."
1106 (let ((title (org-export-data (org-element-property :title inlinetask) info))
1107 (todo (and (plist-get info :with-todo-keywords)
1108 (let ((todo (org-element-property :todo-keyword inlinetask)))
1109 (and todo (org-export-data todo info)))))
1110 (todo-type (org-element-property :todo-type inlinetask))
1111 (tags (and (plist-get info :with-tags)
1112 (org-export-get-tags inlinetask info)))
1113 (priority (and (plist-get info :with-priority)
1114 (org-element-property :priority inlinetask))))
1115 ;; If `org-groff-format-inlinetask-function' is provided, call it
1116 ;; with appropriate arguments.
1117 (if (functionp org-groff-format-inlinetask-function)
1118 (funcall org-groff-format-inlinetask-function
1119 todo todo-type priority title tags contents)
1120 ;; Otherwise, use a default template.
1121 (org-groff--wrap-label
1122 inlinetask
1123 (let ((full-title
1124 (concat
1125 (when todo (format "\\fB%s\\fP " todo))
1126 (when priority (format " [\\#%c] " priority))
1127 title
1128 (when tags (format " \\fC:%s:\\fP "
1129 (mapconcat 'identity tags ":"))))))
1130 (format (concat "\n.DS I\n"
1131 "%s\n"
1132 ".sp"
1133 "%s\n"
1134 ".DE")
1135 full-title contents))))))
1137 ;;; Italic
1139 (defun org-groff-italic (italic contents info)
1140 "Transcode ITALIC from Org to Groff.
1141 CONTENTS is the text with italic markup. INFO is a plist holding
1142 contextual information."
1143 (org-groff--text-markup contents 'italic))
1145 ;;; Item
1147 (defun org-groff-item (item contents info)
1148 "Transcode an ITEM element from Org to Groff.
1149 CONTENTS holds the contents of the item. INFO is a plist holding
1150 contextual information."
1151 (let* ((bullet (org-element-property :bullet item))
1152 (type (org-element-property
1153 :type (org-element-property :parent item)))
1154 (checkbox (case (org-element-property :checkbox item)
1155 (on "\\o'\\(sq\\(mu'")
1156 (off "\\(sq")
1157 (trans "\\o'\\(sq\\(mi'")))
1158 (tag (let ((tag (org-element-property :tag item)))
1159 ;; Check-boxes must belong to the tag.
1160 (and tag (format "%s"
1161 (concat checkbox
1162 (org-export-data tag info)))))))
1164 (cond
1165 ((or checkbox tag)
1166 (concat ".LI ""\"" (or tag (concat "\\ " checkbox)) "\""
1167 "\n"
1168 (org-trim (or contents " "))))
1169 ((eq type 'ordered)
1170 (concat ".LI"
1171 "\n"
1172 (org-trim (or contents " "))))
1174 (let* ((bullet (org-trim bullet))
1175 (marker (cond ((string= "-" bullet) "\\(em")
1176 ((string= "*" bullet) "\\(bu")
1177 (t "\\(dg"))))
1178 (concat ".LI " marker "\n"
1179 (org-trim (or contents " "))))))))
1181 ;;; Keyword
1183 (defun org-groff-keyword (keyword contents info)
1184 "Transcode a KEYWORD element from Org to Groff.
1185 CONTENTS is nil. INFO is a plist holding contextual information."
1186 (let ((key (org-element-property :key keyword))
1187 (value (org-element-property :value keyword)))
1188 (cond
1189 ((string= key "GROFF") value)
1190 (t nil))))
1192 ;;; Line Break
1194 (defun org-groff-line-break (line-break contents info)
1195 "Transcode a LINE-BREAK object from Org to Groff.
1196 CONTENTS is nil. INFO is a plist holding contextual information."
1197 ".br\n")
1199 ;;; Link
1200 ;; Inline images just place a call to .PSPIC or .PS/.PE
1201 ;; and load the graph.
1203 (defun org-groff-link--inline-image (link info)
1204 "Return Groff code for an inline image.
1205 LINK is the link pointing to the inline image. INFO is a plist
1206 used as a communication channel."
1207 (let* ((parent (org-export-get-parent-element link))
1208 (path (let ((raw-path (org-element-property :path link)))
1209 (if (not (file-name-absolute-p raw-path)) raw-path
1210 (expand-file-name raw-path))))
1211 (attr (org-export-read-attribute :attr_groff link))
1212 (placement
1213 (case (plist-get attr :position)
1214 ('center "")
1215 ('left "-L")
1216 ('right "-R")
1217 (t "")))
1218 (width (or (plist-get attr :width) ""))
1219 (height (or (plist-get attr :height) ""))
1220 (caption (and (not (plist-get attr :disable-caption))
1221 (org-groff--caption/label-string parent info))))
1222 ;; Now clear ATTR from any special keyword and set a default value
1223 ;; if nothing is left. Return proper string.
1224 (concat
1225 (cond
1226 ((and org-groff-raster-to-ps
1227 (or (string-match ".\.png$" path)
1228 (string-match ".\.jpg$" path)))
1229 (let ((eps-path (concat path ".eps")))
1230 (shell-command (format org-groff-raster-to-ps path eps-path))
1231 (format "\n.DS L F\n.PSPIC %s \"%s\" %s %s\n.DE "
1232 placement eps-path width height)))
1233 ((string-match ".\.pic$" path)
1234 (format "\n.PS\ncopy \"%s\"\n.PE" path))
1235 (t (format "\n.DS L F\n.PSPIC %s \"%s\" %s %s\n.DE "
1236 placement path width height)))
1237 (and caption (format "\n.FG \"%s\"" caption)))))
1239 (defun org-groff-link (link desc info)
1240 "Transcode a LINK object from Org to Groff.
1242 DESC is the description part of the link, or the empty string.
1243 INFO is a plist holding contextual information. See
1244 `org-export-data'."
1246 (let* ((type (org-element-property :type link))
1247 (raw-path (org-element-property :path link))
1248 ;; Ensure DESC really exists, or set it to nil.
1249 (desc (and (not (string= desc "")) desc))
1250 (imagep (org-export-inline-image-p
1251 link org-groff-inline-image-rules))
1252 (path (cond
1253 ((member type '("http" "https" "ftp" "mailto"))
1254 (concat type ":" raw-path))
1255 ((string= type "file")
1256 (when (string-match "\\(.+\\)::.+" raw-path)
1257 (setq raw-path (match-string 1 raw-path)))
1258 (if (file-name-absolute-p raw-path)
1259 (concat "file://" (expand-file-name raw-path))
1260 (concat "file://" raw-path)))
1261 (t raw-path)))
1262 protocol)
1263 (cond
1264 ;; Image file.
1265 (imagep (org-groff-link--inline-image link info))
1266 ;; import groff files
1267 ((and (string= type "file")
1268 (string-match ".\.groff$" raw-path))
1269 (concat ".so " raw-path "\n"))
1270 ;; Radio link: transcode target's contents and use them as link's
1271 ;; description.
1272 ((string= type "radio")
1273 (let ((destination (org-export-resolve-radio-link link info)))
1274 (when destination
1275 (format "\\fI [%s] \\fP"
1276 (org-export-solidify-link-text path)))))
1278 ;; Links pointing to a headline: find destination and build
1279 ;; appropriate referencing command.
1280 ((member type '("custom-id" "fuzzy" "id"))
1281 (let ((destination (if (string= type "fuzzy")
1282 (org-export-resolve-fuzzy-link link info)
1283 (org-export-resolve-id-link link info))))
1284 (case (org-element-type destination)
1285 ;; Id link points to an external file.
1286 (plain-text
1287 (if desc (format "%s \\fBat\\fP \\fIfile://%s\\fP" desc destination)
1288 (format "\\fI file://%s \\fP" destination)))
1289 ;; Fuzzy link points nowhere.
1290 ('nil
1291 (format org-groff-link-with-unknown-path-format
1292 (or desc
1293 (org-export-data
1294 (org-element-property :raw-link link) info))))
1295 ;; Fuzzy link points to an invisible target.
1296 (keyword nil)
1297 ;; LINK points to a headline. If headlines are numbered
1298 ;; and the link has no description, display headline's
1299 ;; number. Otherwise, display description or headline's
1300 ;; title.
1301 (headline
1302 (let ((label ""))
1303 (if (and (plist-get info :section-numbers) (not desc))
1304 (format "\\fI%s\\fP" label)
1305 (format "\\fI%s\\fP"
1306 (or desc
1307 (org-export-data
1308 (org-element-property :title destination) info))))))
1309 ;; Fuzzy link points to a target. Do as above.
1310 (otherwise
1311 (let ((path (org-export-solidify-link-text path)))
1312 (if (not desc) (format "\\fI%s\\fP" path)
1313 (format "%s \\fBat\\fP \\fI%s\\fP" desc path)))))))
1314 ;; External link with a description part.
1315 ((and path desc) (format "%s \\fBat\\fP \\fI%s\\fP" path desc))
1316 ;; External link without a description part.
1317 (path (format "\\fI%s\\fP" path))
1318 ;; No path, only description. Try to do something useful.
1319 (t (format org-groff-link-with-unknown-path-format desc)))))
1321 ;;; Paragraph
1323 (defun org-groff-paragraph (paragraph contents info)
1324 "Transcode a PARAGRAPH element from Org to Groff.
1325 CONTENTS is the contents of the paragraph, as a string. INFO is
1326 the plist used as a communication channel."
1327 (let ((parent (plist-get (nth 1 paragraph) :parent)))
1328 (when parent
1329 (let* ((parent-type (car parent))
1330 (fixed-paragraph "")
1331 (class (plist-get info :groff-class))
1332 (class-options (plist-get info :groff-class-options))
1333 (classes (assoc class org-groff-classes))
1334 (classes-options (car (last classes)))
1335 (paragraph-option (plist-get classes-options :paragraph)))
1336 (cond
1337 ((and (symbolp paragraph-option)
1338 (fboundp paragraph-option))
1339 (funcall paragraph-option parent-type parent contents))
1340 ((and (eq parent-type 'item)
1341 (plist-get (nth 1 parent) :bullet))
1342 (setq fixed-paragraph (concat "" contents)))
1343 ((eq parent-type 'section)
1344 (setq fixed-paragraph (concat ".P\n" contents)))
1345 ((eq parent-type 'footnote-definition)
1346 (setq fixed-paragraph (concat "" contents)))
1347 (t (setq fixed-paragraph (concat "" contents))))
1348 fixed-paragraph))))
1350 ;;; Plain List
1352 (defun org-groff-plain-list (plain-list contents info)
1353 "Transcode a PLAIN-LIST element from Org to Groff.
1354 CONTENTS is the contents of the list. INFO is a plist holding
1355 contextual information."
1356 (let* ((type (org-element-property :type plain-list))
1357 (attr (mapconcat #'identity
1358 (org-element-property :attr_groff plain-list)
1359 " "))
1360 (groff-type (cond
1361 ((eq type 'ordered) ".AL")
1362 ((eq type 'unordered) ".BL")
1363 ((eq type 'descriptive) ".VL 2.0i"))))
1364 (org-groff--wrap-label
1365 plain-list
1366 (format "%s\n%s\n.LE" groff-type contents))))
1368 ;;; Plain Text
1370 (defun org-groff-plain-text (text info)
1371 "Transcode a TEXT string from Org to Groff.
1372 TEXT is the string to transcode. INFO is a plist holding
1373 contextual information."
1374 (let ((output text))
1375 ;; Protect various characters.
1376 (setq output (replace-regexp-in-string
1377 "\\(?:[^\\]\\|^\\)\\(\\\\\\)\\(?:[^%$#&{}~^_\\]\\|$\\)"
1378 "$\\" output nil t 1))
1379 ;; Activate smart quotes. Be sure to provide original TEXT string
1380 ;; since OUTPUT may have been modified.
1381 (when (plist-get info :with-smart-quotes)
1382 (setq output (org-export-activate-smart-quotes output :utf-8 info text)))
1383 ;; Handle Special Characters
1384 (if org-groff-special-char
1385 (dolist (special-char-list org-groff-special-char)
1386 (setq output
1387 (replace-regexp-in-string (car special-char-list)
1388 (cdr special-char-list) output))))
1389 ;; Handle break preservation if required.
1390 (when (plist-get info :preserve-breaks)
1391 (setq output (replace-regexp-in-string
1392 "\\(\\\\\\\\\\)?[ \t]*\n" ".br\n" output)))
1393 ;; Return value.
1394 output))
1396 ;;; Planning
1398 (defun org-groff-planning (planning contents info)
1399 "Transcode a PLANNING element from Org to Groff.
1400 CONTENTS is nil. INFO is a plist holding contextual
1401 information."
1402 (concat
1403 (mapconcat
1404 'identity
1405 (delq nil
1406 (list
1407 (let ((closed (org-element-property :closed planning)))
1408 (when closed
1409 (concat
1410 (format "\\fR %s \\fP" org-closed-string)
1411 (format org-groff-inactive-timestamp-format
1412 (org-translate-time
1413 (org-element-property :raw-value closed))))))
1414 (let ((deadline (org-element-property :deadline planning)))
1415 (when deadline
1416 (concat
1417 (format "\\fB %s \\fP" org-deadline-string)
1418 (format org-groff-active-timestamp-format
1419 (org-translate-time
1420 (org-element-property :raw-value deadline))))))
1421 (let ((scheduled (org-element-property :scheduled planning)))
1422 (when scheduled
1423 (concat
1424 (format "\\fR %s \\fP" org-scheduled-string)
1425 (format org-groff-active-timestamp-format
1426 (org-translate-time
1427 (org-element-property :raw-value scheduled))))))))
1429 ""))
1431 ;;; Quote Block
1433 (defun org-groff-quote-block (quote-block contents info)
1434 "Transcode a QUOTE-BLOCK element from Org to Groff.
1435 CONTENTS holds the contents of the block. INFO is a plist
1436 holding contextual information."
1437 (org-groff--wrap-label
1438 quote-block
1439 (format ".DS I\n.I\n%s\n.R\n.DE" contents)))
1441 ;;; Quote Section
1443 (defun org-groff-quote-section (quote-section contents info)
1444 "Transcode a QUOTE-SECTION element from Org to Groff.
1445 CONTENTS is nil. INFO is a plist holding contextual information."
1446 (let ((value (org-remove-indentation
1447 (org-element-property :value quote-section))))
1448 (when value (format ".DS L\n\\fI%s\\fP\n.DE\n" value))))
1450 ;;; Radio Target
1452 (defun org-groff-radio-target (radio-target text info)
1453 "Transcode a RADIO-TARGET object from Org to Groff.
1454 TEXT is the text of the target. INFO is a plist holding
1455 contextual information."
1456 (format "%s - %s"
1457 (org-export-solidify-link-text
1458 (org-element-property :value radio-target))
1459 text))
1461 ;;; Section
1463 (defun org-groff-section (section contents info)
1464 "Transcode a SECTION element from Org to Groff.
1465 CONTENTS holds the contents of the section. INFO is a plist
1466 holding contextual information."
1467 contents)
1469 ;;; Special Block
1471 (defun org-groff-special-block (special-block contents info)
1472 "Transcode a SPECIAL-BLOCK element from Org to Groff.
1473 CONTENTS holds the contents of the block. INFO is a plist
1474 holding contextual information."
1475 (let ((type (downcase (org-element-property :type special-block))))
1476 (org-groff--wrap-label
1477 special-block
1478 (format "%s\n" contents))))
1480 ;;; Src Block
1482 (defun org-groff-src-block (src-block contents info)
1483 "Transcode a SRC-BLOCK element from Org to Groff.
1484 CONTENTS holds the contents of the item. INFO is a plist holding
1485 contextual information."
1486 (let* ((lang (org-element-property :language src-block))
1487 (label (org-element-property :name src-block))
1488 (code (org-element-property :value src-block))
1489 (custom-env (and lang
1490 (cadr (assq (intern lang)
1491 org-groff-custom-lang-environments))))
1492 (num-start (case (org-element-property :number-lines src-block)
1493 (continued (org-export-get-loc src-block info))
1494 (new 0)))
1495 (retain-labels (org-element-property :retain-labels src-block))
1496 (caption (and (not (org-export-read-attribute
1497 :attr_groff src-block :disable-caption))
1498 (org-groff--caption/label-string src-block info))))
1500 (cond
1501 ;; Case 1. No source fontification.
1502 ((not org-groff-source-highlight)
1503 (concat
1504 (format ".DS I\n\\fC%s\\fP\n.DE\n"
1505 (org-export-format-code-default src-block info))
1506 (and caption (format ".EX \"%s\" " caption))))
1508 ;; Case 2. Source fontification.
1509 (org-groff-source-highlight
1510 (let* ((tmpdir (if (featurep 'xemacs)
1511 temp-directory
1512 temporary-file-directory))
1513 (in-file (make-temp-name
1514 (expand-file-name "srchilite" tmpdir)))
1515 (out-file (make-temp-name
1516 (expand-file-name "reshilite" tmpdir)))
1518 (org-lang (org-element-property :language src-block))
1519 (lst-lang (cadr (assq (intern org-lang)
1520 org-groff-source-highlight-langs)))
1522 (cmd (concat "source-highlight"
1523 " -s " lst-lang
1524 " -f groff_mm_color "
1525 " -i " in-file
1526 " -o " out-file)))
1528 (concat
1529 (if lst-lang
1530 (let ((code-block ""))
1531 (with-temp-file in-file (insert code))
1532 (shell-command cmd)
1533 (setq code-block (org-file-contents out-file))
1534 (delete-file in-file)
1535 (delete-file out-file)
1536 (format "%s\n" code-block))
1537 (format ".DS I\n\\fC\\m[black]%s\\m[]\\fP\n.DE\n"
1538 code))
1539 (and caption (format ".EX \"%s\" " caption))))))))
1542 ;;; Statistics Cookie
1544 (defun org-groff-statistics-cookie (statistics-cookie contents info)
1545 "Transcode a STATISTICS-COOKIE object from Org to Groff.
1546 CONTENTS is nil. INFO is a plist holding contextual information."
1547 (org-element-property :value statistics-cookie))
1550 ;;; Strike-Through
1552 (defun org-groff-strike-through (strike-through contents info)
1553 "Transcode STRIKE-THROUGH from Org to Groff.
1554 CONTENTS is the text with strike-through markup. INFO is a plist
1555 holding contextual information."
1556 (org-groff--text-markup contents 'strike-through))
1558 ;;; Subscript
1560 (defun org-groff-subscript (subscript contents info)
1561 "Transcode a SUBSCRIPT object from Org to Groff.
1562 CONTENTS is the contents of the object. INFO is a plist holding
1563 contextual information."
1564 (format "\\d\\s-2%s\\s+2\\u" contents))
1566 ;;; Superscript "^_%s$
1568 (defun org-groff-superscript (superscript contents info)
1569 "Transcode a SUPERSCRIPT object from Org to Groff.
1570 CONTENTS is the contents of the object. INFO is a plist holding
1571 contextual information."
1572 (format "\\u\\s-2%s\\s+2\\d" contents))
1575 ;;; Table
1577 ;; `org-groff-table' is the entry point for table transcoding. It
1578 ;; takes care of tables with a "verbatim" attribute. Otherwise, it
1579 ;; delegates the job to `org-groff-table--org-table' function,
1580 ;; depending of the type of the table.
1582 ;; `org-groff-table--align-string' is a subroutine used to build
1583 ;; alignment string for Org tables.
1585 (defun org-groff-table (table contents info)
1586 "Transcode a TABLE element from Org to Groff.
1587 CONTENTS is the contents of the table. INFO is a plist holding
1588 contextual information."
1589 (cond
1590 ;; Case 1: verbatim table.
1591 ((or org-groff-tables-verbatim
1592 (let ((attr (read (format "(%s)"
1593 (mapconcat
1594 #'identity
1595 (org-element-property :attr_groff table) " ")))))
1596 (and attr (plist-get attr :verbatim))))
1598 (format ".DS L\n\\fC%s\\fP\n.DE"
1599 ;; Re-create table, without affiliated keywords.
1600 (org-trim
1601 (org-element-interpret-data
1602 `(table nil ,@(org-element-contents table))))))
1604 ;; Case 2: Standard table.
1605 (t (org-groff-table--org-table table contents info))))
1607 (defun org-groff-table--align-string (divider table info)
1608 "Return an appropriate Groff alignment string.
1609 TABLE is the considered table. INFO is a plist used as
1610 a communication channel."
1611 (let (alignment)
1612 ;; Extract column groups and alignment from first (non-rule) row.
1613 (org-element-map
1614 (org-element-map table 'table-row
1615 (lambda (row)
1616 (and (eq (org-element-property :type row) 'standard) row))
1617 info 'first-match)
1618 'table-cell
1619 (lambda (cell)
1620 (let* ((borders (org-export-table-cell-borders cell info))
1621 (raw-width (org-export-table-cell-width cell info))
1622 (width-cm (when raw-width (/ raw-width 5)))
1623 (width (if raw-width (format "w(%dc)"
1624 (if (< width-cm 1) 1 width-cm)) "")))
1625 ;; Check left border for the first cell only.
1626 ;; Alignment is nil on assignment
1628 (when (and (memq 'left borders) (not alignment))
1629 (push "|" alignment))
1630 (push
1631 (case (org-export-table-cell-alignment cell info)
1632 (left (concat "l" width divider))
1633 (right (concat "r" width divider))
1634 (center (concat "c" width divider)))
1635 alignment)
1636 (when (memq 'right borders) (push "|" alignment))))
1637 info)
1638 (apply 'concat (reverse alignment))))
1640 (defun org-groff-table--org-table (table contents info)
1641 "Return appropriate Groff code for an Org table.
1643 TABLE is the table type element to transcode. CONTENTS is its
1644 contents, as a string. INFO is a plist used as a communication
1645 channel.
1647 This function assumes TABLE has `org' as its `:type' attribute."
1648 (let* ((attr (org-export-read-attribute :attr_groff table))
1649 (label (org-element-property :name table))
1650 (caption (and (not (plist-get attr :disable-caption))
1651 (org-groff--caption/label-string table info)))
1652 (divider (if (plist-get attr :divider) "|" " "))
1654 ;; Determine alignment string.
1655 (alignment (org-groff-table--align-string divider table info))
1657 ;; Extract others display options.
1659 (lines (org-split-string contents "\n"))
1661 (attr-list
1662 (let (result-list)
1663 (dolist (attr-item
1664 (list
1665 (if (plist-get attr :expand)
1666 "expand" nil)
1668 (case (plist-get attr :placement)
1669 ('center "center")
1670 ('left nil)
1672 (if org-groff-tables-centered
1673 "center" "")))
1675 (case (plist-get attr :boxtype)
1676 ('box "box")
1677 ('doublebox "doublebox")
1678 ('allbox "allbox")
1679 ('none nil)
1680 (t "box"))))
1682 (if (not (null attr-item))
1683 (add-to-list 'result-list attr-item)))
1684 result-list))
1686 (title-line (plist-get attr :title-line))
1687 (long-cells (plist-get attr :long-cells))
1689 (table-format
1690 (concat
1691 (format "%s"
1692 (or (car attr-list) ""))
1694 (let (output-list)
1695 (when (cdr attr-list)
1696 (dolist (attr-item (cdr attr-list))
1697 (setq output-list (concat output-list
1698 (format ",%s" attr-item)))))
1699 output-list) "")))
1700 (first-line
1701 (when lines (org-split-string (car lines) "\t"))))
1702 ;; Prepare the final format string for the table.
1705 (cond
1706 ;; Others.
1707 (lines
1708 (concat ".TS\n " table-format ";\n"
1709 (format "%s.\n"
1710 (let ((final-line ""))
1711 (when title-line
1712 (dotimes (i (length first-line))
1713 (setq final-line (concat final-line "cb" divider))))
1715 (setq final-line (concat final-line "\n"))
1717 (if alignment
1718 (setq final-line (concat final-line alignment))
1719 (dotimes (i (length first-line))
1720 (setq final-line (concat final-line "c" divider))))
1721 final-line))
1723 (format "%s.TE\n"
1724 (let ((final-line "")
1725 (long-line "")
1726 (lines (org-split-string contents "\n")))
1728 (dolist (line-item lines)
1729 (setq long-line "")
1731 (if long-cells
1732 (progn
1733 (if (string= line-item "_")
1734 (setq long-line (format "%s\n" line-item))
1735 ;; else string =
1736 (let ((cell-item-list (org-split-string line-item "\t")))
1737 (dolist (cell-item cell-item-list)
1739 (cond ((eq cell-item (car (last cell-item-list)))
1740 (setq long-line (concat long-line
1741 (format "T{\n%s\nT}\t\n" cell-item))))
1743 (setq long-line (concat long-line
1744 (format "T{\n%s\nT}\t" cell-item))))))
1745 long-line))
1746 ;; else long cells
1747 (setq final-line (concat final-line long-line)))
1749 (setq final-line (concat final-line line-item "\n"))))
1750 final-line))
1752 (if caption (format ".TB \"%s\"" caption) ""))))))
1754 ;;; Table Cell
1756 (defun org-groff-table-cell (table-cell contents info)
1757 "Transcode a TABLE-CELL element from Org to Groff
1758 CONTENTS is the cell contents. INFO is a plist used as
1759 a communication channel."
1760 (progn
1761 (concat (if (and contents
1762 org-groff-table-scientific-notation
1763 (string-match orgtbl-exp-regexp contents))
1764 ;; Use appropriate format string for scientific
1765 ;; notation.
1766 (format org-groff-table-scientific-notation
1767 (match-string 1 contents)
1768 (match-string 2 contents))
1769 contents)
1770 (when (org-export-get-next-element table-cell info) "\t"))))
1773 ;;; Table Row
1775 (defun org-groff-table-row (table-row contents info)
1776 "Transcode a TABLE-ROW element from Org to Groff
1777 CONTENTS is the contents of the row. INFO is a plist used as
1778 a communication channel."
1779 ;; Rules are ignored since table separators are deduced from
1780 ;; borders of the current row.
1781 (when (eq (org-element-property :type table-row) 'standard)
1782 (let* ((attr (mapconcat 'identity
1783 (org-element-property
1784 :attr_groff (org-export-get-parent table-row))
1785 " "))
1786 ;; TABLE-ROW's borders are extracted from its first cell.
1787 (borders
1788 (org-export-table-cell-borders
1789 (car (org-element-contents table-row)) info)))
1790 (concat
1791 ;; Mark horizontal lines
1792 (cond ((and (memq 'top borders) (memq 'above borders)) "_\n"))
1793 contents
1794 (cond
1795 ;; When BOOKTABS are activated enforce bottom rule even when
1796 ;; no hline was specifically marked.
1797 ((and (memq 'bottom borders) (memq 'below borders)) "\n_")
1798 ((memq 'below borders) "\n_"))))))
1800 ;;; Target
1802 (defun org-groff-target (target contents info)
1803 "Transcode a TARGET object from Org to Groff.
1804 CONTENTS is nil. INFO is a plist holding contextual
1805 information."
1806 (format "\\fI%s\\fP"
1807 (org-export-solidify-link-text (org-element-property :value target))))
1809 ;;; Timestamp
1811 (defun org-groff-timestamp (timestamp contents info)
1812 "Transcode a TIMESTAMP object from Org to Groff.
1813 CONTENTS is nil. INFO is a plist holding contextual
1814 information."
1815 (let ((value (org-groff-plain-text
1816 (org-timestamp-translate timestamp) info)))
1817 (case (org-element-property :type timestamp)
1818 ((active active-range)
1819 (format org-groff-active-timestamp-format value))
1820 ((inactive inactive-range)
1821 (format org-groff-inactive-timestamp-format value))
1822 (t (format org-groff-diary-timestamp-format value)))))
1824 ;;; Underline
1826 (defun org-groff-underline (underline contents info)
1827 "Transcode UNDERLINE from Org to Groff.
1828 CONTENTS is the text with underline markup. INFO is a plist
1829 holding contextual information."
1830 (org-groff--text-markup contents 'underline))
1832 ;;; Verbatim
1834 (defun org-groff-verbatim (verbatim contents info)
1835 "Transcode a VERBATIM object from Org to Groff.
1836 CONTENTS is nil. INFO is a plist used as a communication
1837 channel."
1838 (org-groff--text-markup (org-element-property :value verbatim) 'verbatim))
1840 ;;; Verse Block
1842 (defun org-groff-verse-block (verse-block contents info)
1843 "Transcode a VERSE-BLOCK element from Org to Groff.
1844 CONTENTS is verse block contents. INFO is a plist holding
1845 contextual information."
1846 (format ".DS C\n.ft HI\n%s\n.ft\n.DE" contents))
1849 ;;; Interactive functions
1851 (defun org-groff-export-to-groff
1852 (&optional async subtreep visible-only body-only ext-plist)
1853 "Export current buffer to a Groff file.
1855 If narrowing is active in the current buffer, only export its
1856 narrowed part.
1858 If a region is active, export that region.
1860 A non-nil optional argument ASYNC means the process should happen
1861 asynchronously. The resulting file should be accessible through
1862 the `org-export-stack' interface.
1864 When optional argument SUBTREEP is non-nil, export the sub-tree
1865 at point, extracting information from the headline properties
1866 first.
1868 When optional argument VISIBLE-ONLY is non-nil, don't export
1869 contents of hidden elements.
1871 EXT-PLIST, when provided, is a property list with external
1872 parameters overriding Org default settings, but still inferior to
1873 file-local settings.
1875 Return output file's name."
1876 (interactive)
1877 (let ((outfile (org-export-output-file-name ".groff" subtreep)))
1878 (if async
1879 (org-export-async-start
1880 (lambda (f) (org-export-add-to-stack f 'groff))
1881 (let ((org-groff-registered-references nil)
1882 (org-groff-special-content nil))
1883 `(expand-file-name
1884 (org-export-to-file
1885 'groff ,outfile ,subtreep ,visible-only ,body-only
1886 ',ext-plist))))
1887 (let ((org-groff-registered-references nil)
1888 (org-groff-special-content nil))
1889 (org-export-to-file
1890 'groff outfile subtreep visible-only body-only ext-plist)))))
1892 (defun org-groff-export-to-pdf
1893 (&optional async subtreep visible-only body-only ext-plist)
1894 "Export current buffer to Groff then process through to PDF.
1896 If narrowing is active in the current buffer, only export its
1897 narrowed part.
1899 If a region is active, export that region.
1901 A non-nil optional argument ASYNC means the process should happen
1902 asynchronously. The resulting file should be accessible through
1903 the `org-export-stack' interface.
1905 When optional argument SUBTREEP is non-nil, export the sub-tree
1906 at point, extracting information from the headline properties
1907 first.
1909 When optional argument VISIBLE-ONLY is non-nil, don't export
1910 contents of hidden elements.
1912 EXT-PLIST, when provided, is a property list with external
1913 parameters overriding Org default settings, but still inferior to
1914 file-local settings.
1916 Return PDF file's name."
1917 (interactive)
1918 (if async
1919 (let ((outfile (org-export-output-file-name ".groff" subtreep)))
1920 (org-export-async-start
1921 (lambda (f) (org-export-add-to-stack f 'groff))
1922 `(expand-file-name
1923 (org-groff-compile
1924 (org-export-to-file
1925 'groff ,outfile ,subtreep ,visible-only ,body-only
1926 ',ext-plist)))))
1927 (org-groff-compile
1928 (org-groff-export-to-groff
1929 nil subtreep visible-only body-only ext-plist))))
1931 (defun org-groff-compile (file)
1932 "Compile a Groff file.
1934 FILE is the name of the file being compiled. Processing is done
1935 through the command specified in `org-groff-pdf-process'.
1937 Return PDF file name or an error if it couldn't be produced."
1938 (let* ((base-name (file-name-sans-extension (file-name-nondirectory file)))
1939 (full-name (file-truename file))
1940 (out-dir (file-name-directory file))
1941 ;; Make sure `default-directory' is set to FILE directory,
1942 ;; not to whatever value the current buffer may have.
1943 (default-directory (file-name-directory full-name))
1944 errors)
1945 (message (format "Processing Groff file %s ..." file))
1946 (save-window-excursion
1947 (cond
1948 ;; A function is provided: Apply it.
1949 ((functionp org-groff-pdf-process)
1950 (funcall org-groff-pdf-process (shell-quote-argument file)))
1951 ;; A list is provided: Replace %b, %f and %o with appropriate
1952 ;; values in each command before applying it. Output is
1953 ;; redirected to "*Org PDF Groff Output*" buffer.
1954 ((consp org-groff-pdf-process)
1955 (let ((outbuf (get-buffer-create "*Org PDF Groff Output*")))
1956 (mapc
1957 (lambda (command)
1958 (shell-command
1959 (replace-regexp-in-string
1960 "%b" (shell-quote-argument base-name)
1961 (replace-regexp-in-string
1962 "%f" (shell-quote-argument full-name)
1963 (replace-regexp-in-string
1964 "%o" (shell-quote-argument out-dir) command t t)
1965 t t) t t)
1966 outbuf))
1967 org-groff-pdf-process)
1968 ;; Collect standard errors from output buffer.
1969 (setq errors (org-groff-collect-errors outbuf))))
1970 (t (error "No valid command to process to PDF")))
1971 (let ((pdffile (concat out-dir base-name ".pdf")))
1972 ;; Check for process failure. Provide collected errors if
1973 ;; possible.
1974 (if (not (file-exists-p pdffile))
1975 (error (concat (format "PDF file %s wasn't produced" pdffile)
1976 (when errors (concat ": " errors))))
1977 ;; Else remove log files, when specified, and signal end of
1978 ;; process to user, along with any error encountered.
1979 (when org-groff-remove-logfiles
1980 (dolist (ext org-groff-logfiles-extensions)
1981 (let ((file (concat out-dir base-name "." ext)))
1982 (when (file-exists-p file) (delete-file file)))))
1983 (message (concat "Process completed"
1984 (if (not errors) "."
1985 (concat " with errors: " errors)))))
1986 ;; Return output file name.
1987 pdffile))))
1989 (defun org-groff-collect-errors (buffer)
1990 "Collect some kind of errors from \"groff\" output
1991 BUFFER is the buffer containing output.
1992 Return collected error types as a string, or nil if there was
1993 none."
1994 (with-current-buffer buffer
1995 (save-excursion
1996 (goto-char (point-max))
1997 ;; Find final run
1998 nil)))
2001 (provide 'ox-groff)
2002 ;;; ox-groff.el ends here