1 ;;; ox-texinfo.el --- Texinfo Back-End for Org Export Engine
3 ;; Copyright (C) 2012-2015 Free Software Foundation, Inc.
4 ;; Author: Jonathan Leech-Pepin <jonathan.leechpepin at gmail dot com>
5 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;; See Org manual for details.
28 (eval-when-compile (require 'cl
))
31 (defvar orgtbl-exp-regexp
)
37 (org-export-define-backend 'texinfo
38 '((bold . org-texinfo-bold
)
39 (center-block . org-texinfo-center-block
)
40 (clock . org-texinfo-clock
)
41 (code . org-texinfo-code
)
42 (drawer . org-texinfo-drawer
)
43 (dynamic-block . org-texinfo-dynamic-block
)
44 (entity . org-texinfo-entity
)
45 (example-block . org-texinfo-example-block
)
46 (export-block . org-texinfo-export-block
)
47 (export-snippet . org-texinfo-export-snippet
)
48 (fixed-width . org-texinfo-fixed-width
)
49 (footnote-definition . org-texinfo-footnote-definition
)
50 (footnote-reference . org-texinfo-footnote-reference
)
51 (headline . org-texinfo-headline
)
52 (inline-src-block . org-texinfo-inline-src-block
)
53 (inlinetask . org-texinfo-inlinetask
)
54 (italic . org-texinfo-italic
)
55 (item . org-texinfo-item
)
56 (keyword . org-texinfo-keyword
)
57 (line-break . org-texinfo-line-break
)
58 (link . org-texinfo-link
)
59 (node-property . org-texinfo-node-property
)
60 (paragraph . org-texinfo-paragraph
)
61 (plain-list . org-texinfo-plain-list
)
62 (plain-text . org-texinfo-plain-text
)
63 (planning . org-texinfo-planning
)
64 (property-drawer . org-texinfo-property-drawer
)
65 (quote-block . org-texinfo-quote-block
)
66 (radio-target . org-texinfo-radio-target
)
67 (section . org-texinfo-section
)
68 (special-block . org-texinfo-special-block
)
69 (src-block . org-texinfo-src-block
)
70 (statistics-cookie . org-texinfo-statistics-cookie
)
71 (subscript . org-texinfo-subscript
)
72 (superscript . org-texinfo-superscript
)
73 (table . org-texinfo-table
)
74 (table-cell . org-texinfo-table-cell
)
75 (table-row . org-texinfo-table-row
)
76 (target . org-texinfo-target
)
77 (template . org-texinfo-template
)
78 (timestamp . org-texinfo-timestamp
)
79 (verbatim . org-texinfo-verbatim
)
80 (verse-block . org-texinfo-verse-block
))
81 :export-block
"TEXINFO"
83 '((:filter-headline . org-texinfo-filter-section-blank-lines
)
84 (:filter-parse-tree . org-texinfo--normalize-headlines
)
85 (:filter-section . org-texinfo-filter-section-blank-lines
))
87 '(?i
"Export to Texinfo"
88 ((?t
"As TEXI file" org-texinfo-export-to-texinfo
)
89 (?i
"As INFO file" org-texinfo-export-to-info
)
90 (?o
"As INFO file and open"
92 (if a
(org-texinfo-export-to-info t s v b
)
93 (org-open-file (org-texinfo-export-to-info nil s v b
)))))))
95 '((:texinfo-filename
"TEXINFO_FILENAME" nil nil t
)
96 (:texinfo-class
"TEXINFO_CLASS" nil org-texinfo-default-class t
)
97 (:texinfo-header
"TEXINFO_HEADER" nil nil newline
)
98 (:texinfo-post-header
"TEXINFO_POST_HEADER" nil nil newline
)
99 (:subtitle
"SUBTITLE" nil nil parse
)
100 (:subauthor
"SUBAUTHOR" nil nil newline
)
101 (:texinfo-dircat
"TEXINFO_DIR_CATEGORY" nil nil t
)
102 (:texinfo-dirtitle
"TEXINFO_DIR_TITLE" nil nil t
)
103 (:texinfo-dirdesc
"TEXINFO_DIR_DESC" nil nil t
)
104 (:texinfo-printed-title
"TEXINFO_PRINTED_TITLE" nil nil t
)
106 (:texinfo-classes nil nil org-texinfo-classes
)
107 (:texinfo-format-headline-function nil nil org-texinfo-format-headline-function
)
108 (:texinfo-node-description-column nil nil org-texinfo-node-description-column
)
109 (:texinfo-active-timestamp-format nil nil org-texinfo-active-timestamp-format
)
110 (:texinfo-inactive-timestamp-format nil nil org-texinfo-inactive-timestamp-format
)
111 (:texinfo-diary-timestamp-format nil nil org-texinfo-diary-timestamp-format
)
112 (:texinfo-link-with-unknown-path-format nil nil org-texinfo-link-with-unknown-path-format
)
113 (:texinfo-tables-verbatim nil nil org-texinfo-tables-verbatim
)
114 (:texinfo-table-scientific-notation nil nil org-texinfo-table-scientific-notation
)
115 (:texinfo-def-table-markup nil nil org-texinfo-def-table-markup
)
116 (:texinfo-text-markup-alist nil nil org-texinfo-text-markup-alist
)
117 (:texinfo-format-drawer-function nil nil org-texinfo-format-drawer-function
)
118 (:texinfo-format-inlinetask-function nil nil org-texinfo-format-inlinetask-function
)))
122 ;;; User Configurable Variables
124 (defgroup org-export-texinfo nil
125 "Options for exporting Org mode files to Texinfo."
126 :tag
"Org Export Texinfo"
128 :package-version
'(Org .
"8.0")
133 (defcustom org-texinfo-coding-system nil
134 "Default document encoding for Texinfo output.
136 If `nil' it will default to `buffer-file-coding-system'."
137 :group
'org-export-texinfo
138 :type
'coding-system
)
140 (defcustom org-texinfo-default-class
"info"
141 "The default Texinfo class."
142 :group
'org-export-texinfo
143 :type
'(string :tag
"Texinfo class"))
145 (defcustom org-texinfo-classes
147 "@documentencoding AUTO\n@documentlanguage AUTO"
148 ("@chapter %s" .
"@unnumbered %s")
149 ("@section %s" .
"@unnumberedsec %s")
150 ("@subsection %s" .
"@unnumberedsubsec %s")
151 ("@subsubsection %s" .
"@unnumberedsubsubsec %s")))
152 "Alist of Texinfo classes and associated header and structure.
153 If #+TEXINFO_CLASS is set in the buffer, use its value and the
154 associated information. Here is the structure of each cell:
158 \(numbered-section . unnumbered-section)
165 The header string is inserted in the header of the generated
166 document, right after \"@setfilename\" and \"@settitle\"
169 If it contains the special string
171 \"@documentencoding AUTO\"
173 \"AUTO\" will be replaced with an appropriate coding system. See
174 `org-texinfo-coding-system' for more information. Likewise, if
175 the string contains the special string
177 \"@documentlanguage AUTO\"
179 \"AUTO\" will be replaced with the language defined in the
180 buffer, through #+LANGUAGE keyword, or globally, with
181 `org-export-default-language', which see.
184 The sectioning structure
185 ------------------------
187 The sectioning structure of the class is given by the elements
188 following the header string. For each sectioning level, a number
189 of strings is specified. A %s formatter is mandatory in each
190 section string and will be replaced by the title of the section.
192 Instead of a list of sectioning commands, you can also specify
193 a function name. That function will be called with two
194 parameters, the reduced) level of the headline, and a predicate
195 non-nil when the headline should be numbered. It must return
196 a format string in which the section title will be added."
197 :group
'org-export-texinfo
199 :package-version
'(Org .
"8.2")
201 (list (string :tag
"Texinfo class")
202 (string :tag
"Texinfo header")
203 (repeat :tag
"Levels" :inline t
206 (string :tag
" numbered")
207 (string :tag
"unnumbered"))
208 (function :tag
"Hook computing sectioning"))))))
212 (defcustom org-texinfo-format-headline-function
213 'org-texinfo-format-headline-default-function
214 "Function to format headline text.
216 This function will be called with 5 arguments:
217 TODO the todo keyword (string or nil).
218 TODO-TYPE the type of todo (symbol: `todo', `done', nil)
219 PRIORITY the priority of the headline (integer or nil)
220 TEXT the main headline text (string).
221 TAGS the tags as a list of strings (list of strings or nil).
223 The function result will be used in the section format string."
224 :group
'org-export-texinfo
227 :package-version
'(Org .
"8.3"))
229 ;;;; Node listing (menu)
231 (defcustom org-texinfo-node-description-column
32
232 "Column at which to start the description in the node listings.
233 If a node title is greater than this length, the description will
234 be placed after the end of the title."
235 :group
'org-export-texinfo
240 (defcustom org-texinfo-active-timestamp-format
"@emph{%s}"
241 "A printf format string to be applied to active timestamps."
242 :group
'org-export-texinfo
245 (defcustom org-texinfo-inactive-timestamp-format
"@emph{%s}"
246 "A printf format string to be applied to inactive timestamps."
247 :group
'org-export-texinfo
250 (defcustom org-texinfo-diary-timestamp-format
"@emph{%s}"
251 "A printf format string to be applied to diary timestamps."
252 :group
'org-export-texinfo
257 (defcustom org-texinfo-link-with-unknown-path-format
"@indicateurl{%s}"
258 "Format string for links with unknown path type."
259 :group
'org-export-texinfo
264 (defcustom org-texinfo-tables-verbatim nil
265 "When non-nil, tables are exported verbatim."
266 :group
'org-export-texinfo
269 (defcustom org-texinfo-table-scientific-notation
"%s\\,(%s)"
270 "Format string to display numbers in scientific notation.
271 The format should have \"%s\" twice, for mantissa and exponent
272 \(i.e. \"%s\\\\times10^{%s}\").
274 When nil, no transformation is made."
275 :group
'org-export-texinfo
277 (string :tag
"Format string")
278 (const :tag
"No formatting" nil
)))
280 (defcustom org-texinfo-def-table-markup
"@samp"
281 "Default setting for @table environments."
282 :group
'org-export-texinfo
287 (defcustom org-texinfo-text-markup-alist
'((bold .
"@strong{%s}")
289 (italic .
"@emph{%s}")
292 "Alist of Texinfo expressions to convert text markup.
294 The key must be a symbol among `bold', `italic' and `comment'.
295 The value is a formatting string to wrap fontified text with.
297 Value can also be set to the following symbols: `verb' and
298 `code'. For the former, Org will use \"@verb\" to
299 create a format string and select a delimiter character that
300 isn't in the string. For the latter, Org will use \"@code\"
301 to typeset and try to protect special characters.
303 If no association can be found for a given markup, text will be
305 :group
'org-export-texinfo
307 :options
'(bold code italic verbatim comment
))
311 (defcustom org-texinfo-format-drawer-function
312 (lambda (name contents
) contents
)
313 "Function called to format a drawer in Texinfo code.
315 The function must accept two parameters:
316 NAME the drawer name, like \"LOGBOOK\"
317 CONTENTS the contents of the drawer.
319 The function should return the string to be exported.
321 The default function simply returns the value of CONTENTS."
322 :group
'org-export-texinfo
324 :package-version
'(Org .
"8.2")
329 (defcustom org-texinfo-format-inlinetask-function
330 'org-texinfo-format-inlinetask-default-function
331 "Function called to format an inlinetask in Texinfo code.
333 The function must accept six parameters:
334 TODO the todo keyword, as a string
335 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
336 PRIORITY the inlinetask priority, as a string
337 NAME the inlinetask name, as a string.
338 TAGS the inlinetask tags, as a list of strings.
339 CONTENTS the contents of the inlinetask, as a string.
341 The function should return the string to be exported."
342 :group
'org-export-texinfo
347 (defcustom org-texinfo-info-process
'("makeinfo %f")
348 "Commands to process a Texinfo file to an INFO file.
349 This is list of strings, each of them will be given to the shell
350 as a command. %f in the command will be replaced by the full
351 file name, %b by the file base name (i.e without extension) and
352 %o by the base directory of the file."
353 :group
'org-export-texinfo
354 :type
'(repeat :tag
"Shell command sequence"
355 (string :tag
"Shell command")))
357 (defcustom org-texinfo-logfiles-extensions
358 '("aux" "toc" "cp" "fn" "ky" "pg" "tp" "vr")
359 "The list of file extensions to consider as Texinfo logfiles.
360 The logfiles will be remove if `org-texinfo-remove-logfiles' is
362 :group
'org-export-texinfo
363 :type
'(repeat (string :tag
"Extension")))
365 (defcustom org-texinfo-remove-logfiles t
366 "Non-nil means remove the logfiles produced by compiling a Texinfo file.
367 By default, logfiles are files with these extensions: .aux, .toc,
368 .cp, .fn, .ky, .pg and .tp. To define the set of logfiles to remove,
369 set `org-texinfo-logfiles-extensions'."
370 :group
'org-export-latex
375 (defconst org-texinfo-max-toc-depth
4
376 "Maximum depth for creation of detailed menu listings.
377 Beyond this depth, Texinfo will not recognize the nodes and will
378 cause errors. Left as a constant in case this value ever
381 (defconst org-texinfo-supported-coding-systems
382 '("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r" "koi8-u")
383 "List of coding systems supported by Texinfo, as strings.
384 Specified coding system will be matched against these strings.
385 If two strings share the same prefix (e.g. \"ISO-8859-1\" and
386 \"ISO-8859-15\"), the most specific one has to be listed first.")
389 ;;; Internal Functions
391 (defun org-texinfo-filter-section-blank-lines (headline back-end info
)
392 "Filter controlling number of blank lines after a section."
393 (let ((blanks (make-string 2 ?
\n)))
394 (replace-regexp-in-string "\n\\(?:\n[ \t]*\\)*\\'" blanks headline
)))
396 (defun org-texinfo--normalize-headlines (tree back-end info
)
397 "Normalize headlines in TREE.
399 BACK-END is the symbol specifying back-end used for export. INFO
400 is a plist used as a communication channel.
402 Make sure every headline in TREE contains a section, since those
403 are required to install a menu. Also put exactly one blank line
404 at the end of each section.
407 (org-element-map tree
'headline
409 (org-element-put-property hl
:post-blank
1)
410 (let ((contents (org-element-contents hl
)))
412 (let ((first (org-element-map contents
'(headline section
)
414 (unless (eq (org-element-type first
) 'section
)
415 (apply #'org-element-set-contents
417 (cons `(section (:parent
,hl
)) contents
)))))))
421 (defun org-texinfo--find-verb-separator (s)
422 "Return a character not used in string S.
423 This is used to choose a separator for constructs like \\verb."
424 (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
425 (loop for c across ll
426 when
(not (string-match (regexp-quote (char-to-string c
)) s
))
427 return
(char-to-string c
))))
429 (defun org-texinfo--text-markup (text markup info
)
430 "Format TEXT depending on MARKUP text markup.
431 INFO is a plist used as a communication channel. See
432 `org-texinfo-text-markup-alist' for details."
433 (let ((fmt (cdr (assq markup org-texinfo-text-markup-alist
))))
435 ;; No format string: Return raw text.
438 (let ((separator (org-texinfo--find-verb-separator text
)))
439 (concat "@verb{" separator text separator
"}")))
444 (while (string-match "[@{}]" text
)
445 (setq char
(match-string 0 text
))
446 (if (> (match-beginning 0) 0)
447 (setq rtn
(concat rtn
(substring text
0 (match-beginning 0)))))
448 (setq text
(substring text
(1+ (match-beginning 0))))
449 (setq char
(concat "@" char
)
450 rtn
(concat rtn char
)))
451 (setq text
(concat rtn text
)
454 ;; Else use format string.
455 (t (format fmt text
)))))
457 (defun org-texinfo--get-node (blob info
)
458 "Return node or anchor associated to BLOB.
459 BLOB is an element or object. INFO is a plist used as
460 a communication channel. The function guarantees the node or
461 anchor name is unique."
462 (let ((cache (plist-get info
:texinfo-node-cache
)))
463 (or (cdr (assq blob cache
))
465 (org-texinfo--sanitize-node
466 (if (eq (org-element-type blob
) 'headline
)
467 (org-export-data (org-export-get-alt-title blob info
) info
)
468 (org-export-get-reference blob info
)))))
469 ;; Ensure NAME is unique.
470 (while (rassoc name cache
) (setq name
(concat name
"x")))
471 (plist-put info
:texinfo-node-cache
(cons (cons blob name
) cache
))
476 (defun org-texinfo--sanitize-node (title)
477 "Bend string TITLE to node line requirements.
478 Trim string and collapse multiple whitespace characters as they
479 are not significant. Also remove the following characters: @
481 (replace-regexp-in-string
483 (replace-regexp-in-string
484 "\\`(\\(.*)\\)" "[\\1"
485 (org-trim (replace-regexp-in-string "[ \t]\\{2,\\}" " " title
)))))
487 ;;;; Content sanitizing
489 (defun org-texinfo--sanitize-content (text)
490 "Escape special characters in string TEXT.
491 Special characters are: @ { }"
492 (replace-regexp-in-string "[@{}]" "@\\&" text
))
496 (defun org-texinfo-template (contents info
)
497 "Return complete document string after Texinfo conversion.
498 CONTENTS is the transcoded contents string. INFO is a plist
499 holding export options."
500 (let ((title (org-export-data (plist-get info
:title
) info
))
501 ;; Copying data is the contents of the first headline in
502 ;; parse tree with a non-nil copying property.
503 (copying (org-element-map (plist-get info
:parse-tree
) 'headline
505 (and (org-not-nil (org-element-property :COPYING hl
))
506 (org-element-contents hl
)))
509 "\\input texinfo @c -*- texinfo -*-\n"
510 "@c %**start of header\n"
511 (let ((file (or (plist-get info
:texinfo-filename
)
512 (let ((f (plist-get info
:output-file
)))
513 (and f
(concat (file-name-sans-extension f
) ".info"))))))
514 (and file
(format "@setfilename %s\n" file
)))
515 (format "@settitle %s\n" title
)
516 ;; Insert class-defined header.
517 (org-element-normalize-string
518 (let ((header (nth 1 (assoc (plist-get info
:texinfo-class
)
519 org-texinfo-classes
)))
521 (catch 'coding-system
522 (let ((case-fold-search t
)
523 (name (symbol-name (or org-texinfo-coding-system
524 buffer-file-coding-system
))))
525 (dolist (system org-texinfo-supported-coding-systems
"UTF-8")
526 (when (org-string-match-p (regexp-quote system
) name
)
527 (throw 'coding-system system
))))))
528 (language (plist-get info
:language
))
529 (case-fold-search nil
))
530 ;; Auto coding system.
531 (replace-regexp-in-string
532 "^@documentencoding \\(AUTO\\)$"
534 (replace-regexp-in-string
535 "^@documentlanguage \\(AUTO\\)$" language header t nil
1) t nil
1)))
536 ;; Additional header options set by #+TEXINFO_HEADER.
537 (let ((texinfo-header (plist-get info
:texinfo-header
)))
538 (and texinfo-header
(org-element-normalize-string texinfo-header
)))
539 "@c %**end of header\n\n"
540 ;; Additional options set by #+TEXINFO_POST_HEADER.
541 (let ((texinfo-post-header (plist-get info
:texinfo-post-header
)))
542 (and texinfo-post-header
543 (org-element-normalize-string texinfo-post-header
)))
546 (format "@copying\n%s@end copying\n\n"
547 (org-element-normalize-string
548 (org-export-data copying info
))))
549 ;; Info directory information. Only supply if both title and
550 ;; category are provided.
551 (let ((dircat (plist-get info
:texinfo-dircat
))
553 (let ((title (plist-get info
:texinfo-dirtitle
)))
555 (string-match "^\\(?:\\* \\)?\\(.*?\\)\\(\\.\\)?$" title
)
556 (format "* %s." (match-string 1 title
))))))
557 (when (and dircat dirtitle
)
558 (concat "@dircategory " dircat
"\n"
561 (let ((desc (plist-get info
:texinfo-dirdesc
)))
562 (cond ((not desc
) nil
)
563 ((org-string-match-p "\\.$" desc
) desc
)
564 (t (concat desc
"."))))))
565 (if dirdesc
(format "%-23s %s" dirtitle dirdesc
) dirtitle
))
567 "@end direntry\n\n")))
571 (when (plist-get info
:with-title
)
573 (format "@title %s\n" (or (plist-get info
:texinfo-printed-title
) title
""))
574 (let ((subtitle (plist-get info
:subtitle
)))
576 (format "@subtitle %s\n"
577 (org-export-data subtitle info
))))))
578 (when (plist-get info
:with-author
)
581 (let ((author (org-string-nw-p
582 (org-export-data (plist-get info
:author
) info
)))
583 (email (and (plist-get info
:with-email
)
585 (org-export-data (plist-get info
:email
) info
)))))
586 (cond ((and author email
)
587 (format "@author %s (@email{%s})\n" author email
))
588 (author (format "@author %s\n" author
))
589 (email (format "@author @email{%s}\n" email
))))
591 (let ((subauthor (plist-get info
:subauthor
)))
593 (org-element-normalize-string
594 (replace-regexp-in-string "^" "@author " subauthor
))))))
595 (and copying
"@page\n@vskip 0pt plus 1filll\n@insertcopying\n")
597 ;; Table of contents.
598 (and (plist-get info
:with-toc
) "@contents\n\n")
599 ;; Configure Top Node when not for Tex
602 (format "@top %s\n" title
)
603 (and copying
"@insertcopying\n")
606 (org-texinfo-make-menu (plist-get info
:parse-tree
) info
'master
)
611 (and (plist-get info
:with-creator
)
612 (concat (plist-get info
:creator
) "\n"))
618 ;;; Transcode Functions
622 (defun org-texinfo-bold (bold contents info
)
623 "Transcode BOLD from Org to Texinfo.
624 CONTENTS is the text with bold markup. INFO is a plist holding
625 contextual information."
626 (org-texinfo--text-markup contents
'bold info
))
630 (defun org-texinfo-center-block (center-block contents info
)
631 "Transcode a CENTER-BLOCK element from Org to Texinfo.
632 CONTENTS holds the contents of the block. INFO is a plist used
633 as a communication channel."
638 (defun org-texinfo-clock (clock contents info
)
639 "Transcode a CLOCK element from Org to Texinfo.
640 CONTENTS is nil. INFO is a plist holding contextual
644 (format "@strong{%s} " org-clock-string
)
645 (format (plist-get info
:texinfo-inactive-timestamp-format
)
646 (concat (org-timestamp-translate (org-element-property :value clock
))
647 (let ((time (org-element-property :duration clock
)))
648 (and time
(format " (%s)" time
)))))
653 (defun org-texinfo-code (code contents info
)
654 "Transcode a CODE object from Org to Texinfo.
655 CONTENTS is nil. INFO is a plist used as a communication
657 (org-texinfo--text-markup (org-element-property :value code
) 'code info
))
661 (defun org-texinfo-drawer (drawer contents info
)
662 "Transcode a DRAWER element from Org to Texinfo.
663 CONTENTS holds the contents of the block. INFO is a plist
664 holding contextual information."
665 (let* ((name (org-element-property :drawer-name drawer
))
666 (output (funcall (plist-get info
:texinfo-format-drawer-function
)
672 (defun org-texinfo-dynamic-block (dynamic-block contents info
)
673 "Transcode a DYNAMIC-BLOCK element from Org to Texinfo.
674 CONTENTS holds the contents of the block. INFO is a plist
675 holding contextual information."
680 (defun org-texinfo-entity (entity contents info
)
681 "Transcode an ENTITY object from Org to Texinfo.
682 CONTENTS are the definition itself. INFO is a plist holding
683 contextual information."
684 (let ((ent (org-element-property :latex entity
)))
685 (if (org-element-property :latex-math-p entity
) (format "@math{%s}" ent
) ent
)))
689 (defun org-texinfo-example-block (example-block contents info
)
690 "Transcode an EXAMPLE-BLOCK element from Org to Texinfo.
691 CONTENTS is nil. INFO is a plist holding contextual
693 (format "@verbatim\n%s@end verbatim"
694 (org-export-format-code-default example-block info
)))
698 (defun org-texinfo-export-block (export-block contents info
)
699 "Transcode a EXPORT-BLOCK element from Org to Texinfo.
700 CONTENTS is nil. INFO is a plist holding contextual information."
701 (when (string= (org-element-property :type export-block
) "TEXINFO")
702 (org-remove-indentation (org-element-property :value export-block
))))
706 (defun org-texinfo-export-snippet (export-snippet contents info
)
707 "Transcode a EXPORT-SNIPPET object from Org to Texinfo.
708 CONTENTS is nil. INFO is a plist holding contextual information."
709 (when (eq (org-export-snippet-backend export-snippet
) 'texinfo
)
710 (org-element-property :value export-snippet
)))
714 (defun org-texinfo-fixed-width (fixed-width contents info
)
715 "Transcode a FIXED-WIDTH element from Org to Texinfo.
716 CONTENTS is nil. INFO is a plist holding contextual information."
717 (format "@example\n%s\n@end example"
718 (org-remove-indentation
719 (org-texinfo--sanitize-content
720 (org-element-property :value fixed-width
)))))
722 ;;;; Footnote Reference
724 (defun org-texinfo-footnote-reference (footnote contents info
)
725 "Create a footnote reference for FOOTNOTE.
727 FOOTNOTE is the footnote to define. CONTENTS is nil. INFO is a
728 plist holding contextual information."
729 (let ((def (org-export-get-footnote-definition footnote info
)))
730 (format "@footnote{%s}"
731 (org-trim (org-export-data def info
)))))
735 (defun org-texinfo-headline (headline contents info
)
736 "Transcode a HEADLINE element from Org to Texinfo.
737 CONTENTS holds the contents of the headline. INFO is a plist
738 holding contextual information."
739 (let* ((class (plist-get info
:texinfo-class
))
740 (level (org-export-get-relative-level headline info
))
741 (numberedp (org-export-numbered-headline-p headline info
))
742 (class-sectioning (assoc class
(plist-get info
:texinfo-classes
)))
743 ;; Find the index type, if any.
744 (index (org-element-property :INDEX headline
))
745 ;; Create node info, to insert it before section formatting.
746 ;; Use custom menu title if present.
747 (node (format "@node %s\n" (org-texinfo--get-node headline info
)))
748 ;; Section formatting will set two placeholders: one for the
749 ;; title and the other for the contents.
751 (if (org-not-nil (org-element-property :APPENDIX headline
))
753 (let ((sec (if (and (symbolp (nth 2 class-sectioning
))
754 (fboundp (nth 2 class-sectioning
)))
755 (funcall (nth 2 class-sectioning
) level numberedp
)
756 (nth (1+ level
) class-sectioning
))))
758 ;; No section available for that LEVEL.
760 ;; Section format directly returned by a function.
762 ;; (numbered-section . unnumbered-section)
763 ((not (consp (cdr sec
)))
764 (concat (if (or index
(not numberedp
)) (cdr sec
) (car sec
))
767 (and (plist-get info
:with-todo-keywords
)
768 (let ((todo (org-element-property :todo-keyword headline
)))
769 (and todo
(org-export-data todo info
)))))
770 (todo-type (and todo
(org-element-property :todo-type headline
)))
771 (tags (and (plist-get info
:with-tags
)
772 (org-export-get-tags headline info
)))
773 (priority (and (plist-get info
:with-priority
)
774 (org-element-property :priority headline
)))
775 (text (org-export-data (org-element-property :title headline
) info
))
776 (full-text (funcall (plist-get info
:texinfo-format-headline-function
)
777 todo todo-type priority text tags
))
778 (contents (if (org-string-nw-p contents
) (concat "\n" contents
) "")))
780 ;; Case 1: This is a footnote section: ignore it.
781 ((org-element-property :footnote-section-p headline
) nil
)
782 ;; Case 2: This is the `copying' section: ignore it
783 ;; This is used elsewhere.
784 ((org-not-nil (org-element-property :COPYING headline
)) nil
)
785 ;; Case 3: An index. If it matches one of the known indexes,
786 ;; print it as such following the contents, otherwise
787 ;; print the contents and leave the index up to the user.
794 (and (member index
'("cp" "fn" "ky" "pg" "tp" "vr"))
795 (concat "\n@printindex " index
))))))
796 ;; Case 4: This is a deep sub-tree: export it as a list item.
797 ;; Also export as items headlines for which no section
798 ;; format has been found.
799 ((or (not section-fmt
) (org-export-low-level-p headline info
))
800 ;; Build the real contents of the sub-tree.
801 (concat (and (org-export-first-sibling-p headline info
)
802 (format "@%s\n" (if numberedp
'enumerate
'itemize
)))
803 "@item\n" full-text
"\n"
805 (if (org-export-last-sibling-p headline info
)
806 (format "@end %s" (if numberedp
'enumerate
'itemize
))
808 ;; Case 5: Standard headline. Export it as a section.
809 (t (concat node
(format section-fmt full-text contents
))))))
811 (defun org-texinfo-format-headline-default-function
812 (todo todo-type priority text tags
)
813 "Default format function for a headline.
814 See `org-texinfo-format-headline-function' for details."
815 (concat (when todo
(format "@strong{%s} " todo
))
816 (when priority
(format "@emph{#%s} " priority
))
818 (when tags
(format " :%s:" (mapconcat 'identity tags
":")))))
820 ;;;; Inline Src Block
822 (defun org-texinfo-inline-src-block (inline-src-block contents info
)
823 "Transcode an INLINE-SRC-BLOCK element from Org to Texinfo.
824 CONTENTS holds the contents of the item. INFO is a plist holding
825 contextual information."
826 (let* ((code (org-element-property :value inline-src-block
))
827 (separator (org-texinfo--find-verb-separator code
)))
828 (concat "@verb{" separator code separator
"}")))
832 (defun org-texinfo-inlinetask (inlinetask contents info
)
833 "Transcode an INLINETASK element from Org to Texinfo.
834 CONTENTS holds the contents of the block. INFO is a plist
835 holding contextual information."
836 (let ((title (org-export-data (org-element-property :title inlinetask
) info
))
837 (todo (and (plist-get info
:with-todo-keywords
)
838 (let ((todo (org-element-property :todo-keyword inlinetask
)))
839 (and todo
(org-export-data todo info
)))))
840 (todo-type (org-element-property :todo-type inlinetask
))
841 (tags (and (plist-get info
:with-tags
)
842 (org-export-get-tags inlinetask info
)))
843 (priority (and (plist-get info
:with-priority
)
844 (org-element-property :priority inlinetask
))))
845 (funcall (plist-get info
:texinfo-format-inlinetask-function
)
846 todo todo-type priority title tags contents
)))
848 (defun org-texinfo-format-inlinetask-default-function
849 (todo todo-type priority title tags contents
)
850 "Default format function for a inlinetasks.
851 See `org-texinfo-format-inlinetask-function' for details."
853 (concat (when todo
(format "@strong{%s} " todo
))
854 (when priority
(format "#%c " priority
))
856 (when tags
(format ":%s:" (mapconcat #'identity tags
":"))))))
857 (format "@center %s\n\n%s\n" full-title contents
)))
861 (defun org-texinfo-italic (italic contents info
)
862 "Transcode ITALIC from Org to Texinfo.
863 CONTENTS is the text with italic markup. INFO is a plist holding
864 contextual information."
865 (org-texinfo--text-markup contents
'italic info
))
869 (defun org-texinfo-item (item contents info
)
870 "Transcode an ITEM element from Org to Texinfo.
871 CONTENTS holds the contents of the item. INFO is a plist holding
872 contextual information."
873 (format "@item%s\n%s"
874 (let ((tag (org-element-property :tag item
)))
875 (if tag
(concat " " (org-export-data tag info
)) ""))
880 (defun org-texinfo-keyword (keyword contents info
)
881 "Transcode a KEYWORD element from Org to Texinfo.
882 CONTENTS is nil. INFO is a plist holding contextual information."
883 (let ((key (org-element-property :key keyword
))
884 (value (org-element-property :value keyword
)))
886 ((string= key
"TEXINFO") value
)
887 ((string= key
"CINDEX") (format "@cindex %s" value
))
888 ((string= key
"FINDEX") (format "@findex %s" value
))
889 ((string= key
"KINDEX") (format "@kindex %s" value
))
890 ((string= key
"PINDEX") (format "@pindex %s" value
))
891 ((string= key
"TINDEX") (format "@tindex %s" value
))
892 ((string= key
"VINDEX") (format "@vindex %s" value
)))))
896 (defun org-texinfo-line-break (line-break contents info
)
897 "Transcode a LINE-BREAK object from Org to Texinfo.
898 CONTENTS is nil. INFO is a plist holding contextual information."
903 (defun org-texinfo-link (link desc info
)
904 "Transcode a LINK object from Org to Texinfo.
906 DESC is the description part of the link, or the empty string.
907 INFO is a plist holding contextual information. See
909 (let* ((type (org-element-property :type link
))
910 (raw-path (org-element-property :path link
))
911 ;; Ensure DESC really exists, or set it to nil.
912 (desc (and (not (string= desc
"")) desc
))
914 ((member type
'("http" "https" "ftp"))
915 (concat type
":" raw-path
))
916 ((string= type
"file") (org-export-file-uri raw-path
))
919 ((org-export-custom-protocol-maybe link desc
'texinfo
))
920 ((equal type
"radio")
921 (let ((destination (org-export-resolve-radio-link link info
)))
922 (if (not destination
) desc
923 (format "@ref{%s,,%s}"
924 (org-texinfo--get-node destination info
)
926 ((member type
'("custom-id" "id" "fuzzy"))
928 (if (equal type
"fuzzy")
929 (org-export-resolve-fuzzy-link link info
)
930 (org-export-resolve-id-link link info
))))
931 (case (org-element-type destination
)
933 (format org-texinfo-link-with-unknown-path-format
934 (org-texinfo--sanitize-content path
)))
935 ;; Id link points to an external file.
937 (if desc
(format "@uref{file://%s,%s}" destination desc
)
938 (format "@uref{file://%s}" destination
)))
940 (format "@ref{%s,%s}"
941 (org-texinfo--get-node destination info
)
944 ((org-export-numbered-headline-p destination info
)
946 (org-element-property :title destination
) info
))
950 (org-export-get-headline-number destination info
) ".")))))
954 (if (and (eq (org-element-type destination
) 'headline
)
955 (not (org-export-numbered-headline-p
958 (org-element-property :title destination
) info
))
959 (let ((n (org-export-get-ordinal destination info
)))
963 (t (mapconcat #'number-to-string n
".")))))))
965 (format "@ref{%s,,%s}"
966 (org-texinfo--get-node destination info
)
969 (let* ((info-path (split-string path
"[:#]"))
970 (info-manual (car info-path
))
971 (info-node (or (cadr info-path
) "top"))
972 (title (or desc
"")))
973 (format "@ref{%s,%s,,%s,}" info-node title info-manual
)))
974 ((string= type
"mailto")
976 (concat (org-texinfo--sanitize-content path
)
977 (and desc
(concat "," desc
)))))
978 ;; External link with a description part.
979 ((and path desc
) (format "@uref{%s,%s}" path desc
))
980 ;; External link without a description part.
981 (path (format "@uref{%s}" path
))
982 ;; No path, only description. Try to do something useful.
984 (format (plist-get info
:texinfo-link-with-unknown-path-format
) desc
)))))
989 (defun org-texinfo-make-menu (scope info
&optional master
)
990 "Create the menu for inclusion in the Texinfo document.
992 SCOPE is a headline or a full parse tree. INFO is the
993 communication channel, as a plist.
995 When optional argument MASTER is non-nil, generate a master menu,
996 including detailed node listing."
997 (let ((menu (org-texinfo--build-menu scope info
)))
998 (when (org-string-nw-p menu
)
999 (org-element-normalize-string
1001 "@menu\n%s@end menu"
1005 (org-texinfo--build-menu
1007 (let ((toc-depth (plist-get info
:with-toc
)))
1008 (if (wholenump toc-depth
) toc-depth
1009 org-texinfo-max-toc-depth
)))))
1010 (when (org-string-nw-p detailmenu
)
1011 (concat "\n@detailmenu\n"
1012 "--- The Detailed Node Listing ---\n\n"
1014 "@end detailmenu\n"))))))))))
1016 (defun org-texinfo--build-menu (scope info
&optional level
)
1017 "Build menu for entries within SCOPE.
1018 SCOPE is a headline or a full parse tree. INFO is a plist
1019 containing contextual information. When optional argument LEVEL
1020 is an integer, build the menu recursively, down to this depth."
1023 (org-texinfo--format-entries (org-texinfo--menu-entries scope info
) info
))
1026 (org-element-normalize-string
1029 (let ((entries (org-texinfo--menu-entries h info
)))
1032 (format "%s\n\n%s\n"
1033 (org-export-data (org-export-get-alt-title h info
) info
)
1034 (org-texinfo--format-entries entries info
))
1035 (org-texinfo--build-menu h info
(1- level
))))))
1036 (org-texinfo--menu-entries scope info
) "")))))
1038 (defun org-texinfo--format-entries (entries info
)
1039 "Format all direct menu entries in SCOPE, as a string.
1040 SCOPE is either a headline or a full Org document. INFO is
1041 a plist containing contextual information."
1042 (org-element-normalize-string
1045 (let* ((title (org-export-data
1046 (org-export-get-alt-title h info
) info
))
1047 (node (org-texinfo--get-node h info
))
1048 (entry (concat "* " title
":"
1049 (if (string= title node
) ":"
1050 (concat " " node
". "))))
1051 (desc (org-element-property :DESCRIPTION h
)))
1052 (if (not desc
) entry
1053 (format (format "%%-%ds %%s" org-texinfo-node-description-column
)
1057 (defun org-texinfo--menu-entries (scope info
)
1058 "List direct children in SCOPE needing a menu entry.
1059 SCOPE is a headline or a full parse tree. INFO is a plist
1060 holding contextual information."
1061 (let* ((cache (or (plist-get info
:texinfo-entries-cache
)
1062 (plist-get (plist-put info
:texinfo-entries-cache
1063 (make-hash-table :test
#'eq
))
1064 :texinfo-entries-cache
)))
1065 (cached-entries (gethash scope cache
'no-cache
)))
1066 (if (not (eq cached-entries
'no-cache
)) cached-entries
1068 (org-element-map (org-element-contents scope
) 'headline
1070 (and (not (org-not-nil (org-element-property :COPYING h
)))
1071 (not (org-element-property :footnote-section-p h
))
1072 (not (org-export-low-level-p h info
))
1079 (defun org-texinfo-node-property (node-property contents info
)
1080 "Transcode a NODE-PROPERTY element from Org to Texinfo.
1081 CONTENTS is nil. INFO is a plist holding contextual
1084 (org-element-property :key node-property
)
1085 (let ((value (org-element-property :value node-property
)))
1086 (if value
(concat " " value
) ""))))
1090 (defun org-texinfo-paragraph (paragraph contents info
)
1091 "Transcode a PARAGRAPH element from Org to Texinfo.
1092 CONTENTS is the contents of the paragraph, as a string. INFO is
1093 the plist used as a communication channel."
1098 (defun org-texinfo-plain-list (plain-list contents info
)
1099 "Transcode a PLAIN-LIST element from Org to Texinfo.
1100 CONTENTS is the contents of the list. INFO is a plist holding
1101 contextual information."
1102 (let* ((attr (org-export-read-attribute :attr_texinfo plain-list
))
1103 (indic (or (plist-get attr
:indic
)
1104 (plist-get info
:texinfo-def-table-markup
)))
1105 (table-type (plist-get attr
:table-type
))
1106 (type (org-element-property :type plain-list
))
1108 ((eq type
'ordered
) "enumerate")
1109 ((eq type
'unordered
) "itemize")
1110 ((member table-type
'("ftable" "vtable")) table-type
)
1112 (format "@%s\n%s@end %s"
1113 (if (eq type
'descriptive
) (concat list-type
" " indic
) list-type
)
1119 (defun org-texinfo-plain-text (text info
)
1120 "Transcode a TEXT string from Org to Texinfo.
1121 TEXT is the string to transcode. INFO is a plist holding
1122 contextual information."
1123 ;; First protect @, { and }.
1124 (let ((output (org-texinfo--sanitize-content text
)))
1125 ;; Activate smart quotes. Be sure to provide original TEXT string
1126 ;; since OUTPUT may have been modified.
1127 (when (plist-get info
:with-smart-quotes
)
1129 (org-export-activate-smart-quotes output
:texinfo info text
)))
1130 ;; LaTeX into @LaTeX{} and TeX into @TeX{}
1131 (let ((case-fold-search nil
)
1133 (while (string-match "\\(\\(?:La\\)?TeX\\)" output start
)
1134 (setq output
(replace-match
1135 (format "@%s{}" (match-string 1 output
)) nil t output
)
1136 start
(match-end 0))))
1137 ;; Convert special strings.
1138 (when (plist-get info
:with-special-strings
)
1139 (while (string-match (regexp-quote "...") output
)
1140 (setq output
(replace-match "@dots{}" nil t output
))))
1141 ;; Handle break preservation if required.
1142 (when (plist-get info
:preserve-breaks
)
1143 (setq output
(replace-regexp-in-string
1144 "\\(\\\\\\\\\\)?[ \t]*\n" " @*\n" output
)))
1150 (defun org-texinfo-planning (planning contents info
)
1151 "Transcode a PLANNING element from Org to Texinfo.
1152 CONTENTS is nil. INFO is a plist holding contextual
1160 (let ((closed (org-element-property :closed planning
)))
1163 (format "@strong{%s} " org-closed-string
)
1164 (format (plist-get info
:texinfo-inactive-timestamp-format
)
1165 (org-timestamp-translate closed
)))))
1166 (let ((deadline (org-element-property :deadline planning
)))
1169 (format "@strong{%s} " org-deadline-string
)
1170 (format (plist-get info
:texinfo-active-timestamp-format
)
1171 (org-timestamp-translate deadline
)))))
1172 (let ((scheduled (org-element-property :scheduled planning
)))
1175 (format "@strong{%s} " org-scheduled-string
)
1176 (format (plist-get info
:texinfo-active-timestamp-format
)
1177 (org-timestamp-translate scheduled
)))))))
1181 ;;;; Property Drawer
1183 (defun org-texinfo-property-drawer (property-drawer contents info
)
1184 "Transcode a PROPERTY-DRAWER element from Org to Texinfo.
1185 CONTENTS holds the contents of the drawer. INFO is a plist
1186 holding contextual information."
1187 (and (org-string-nw-p contents
)
1188 (format "@verbatim\n%s@end verbatim" contents
)))
1192 (defun org-texinfo-quote-block (quote-block contents info
)
1193 "Transcode a QUOTE-BLOCK element from Org to Texinfo.
1194 CONTENTS holds the contents of the block. INFO is a plist
1195 holding contextual information."
1196 (let* ((title (org-element-property :name quote-block
))
1197 (start-quote (concat "@quotation"
1199 (format " %s" title
)))))
1200 (format "%s\n%s@end quotation" start-quote contents
)))
1204 (defun org-texinfo-radio-target (radio-target text info
)
1205 "Transcode a RADIO-TARGET object from Org to Texinfo.
1206 TEXT is the text of the target. INFO is a plist holding
1207 contextual information."
1208 (format "@anchor{%s}%s"
1209 (org-export-get-reference radio-target info
)
1214 (defun org-texinfo-section (section contents info
)
1215 "Transcode a SECTION element from Org to Texinfo.
1216 CONTENTS holds the contents of the section. INFO is a plist
1217 holding contextual information."
1219 (let ((parent (org-export-get-parent-headline section
)))
1220 (and parent
(org-texinfo-make-menu parent info
)))))
1224 (defun org-texinfo-special-block (special-block contents info
)
1225 "Transcode a SPECIAL-BLOCK element from Org to Texinfo.
1226 CONTENTS holds the contents of the block. INFO is a plist used
1227 as a communication channel."
1228 (let ((type (org-element-property :type special-block
)))
1229 (format "@%s\n%s@end %s" type contents type
)))
1233 (defun org-texinfo-src-block (src-block contents info
)
1234 "Transcode a SRC-BLOCK element from Org to Texinfo.
1235 CONTENTS holds the contents of the item. INFO is a plist holding
1236 contextual information."
1237 (let ((lispp (org-string-match-p "lisp"
1238 (org-element-property :language src-block
)))
1239 (code (org-texinfo--sanitize-content
1240 (org-export-format-code-default src-block info
))))
1241 (format (if lispp
"@lisp\n%s@end lisp" "@example\n%s@end example") code
)))
1243 ;;;; Statistics Cookie
1245 (defun org-texinfo-statistics-cookie (statistics-cookie contents info
)
1246 "Transcode a STATISTICS-COOKIE object from Org to Texinfo.
1247 CONTENTS is nil. INFO is a plist holding contextual information."
1248 (org-element-property :value statistics-cookie
))
1252 (defun org-texinfo-subscript (subscript contents info
)
1253 "Transcode a SUBSCRIPT object from Org to Texinfo.
1254 CONTENTS is the contents of the object. INFO is a plist holding
1255 contextual information."
1256 (format "@math{_%s}" contents
))
1260 (defun org-texinfo-superscript (superscript contents info
)
1261 "Transcode a SUPERSCRIPT object from Org to Texinfo.
1262 CONTENTS is the contents of the object. INFO is a plist holding
1263 contextual information."
1264 (format "@math{^%s}" contents
))
1268 (defun org-texinfo-table (table contents info
)
1269 "Transcode a TABLE element from Org to Texinfo.
1270 CONTENTS is the contents of the table. INFO is a plist holding
1271 contextual information."
1272 (if (eq (org-element-property :type table
) 'table.el
)
1273 (format "@verbatim\n%s@end verbatim"
1274 (org-element-normalize-string
1275 (org-element-property :value table
)))
1276 (let* ((col-width (org-export-read-attribute :attr_texinfo table
:columns
))
1278 (if col-width
(format "@columnfractions %s" col-width
)
1279 (org-texinfo-table-column-widths table info
))))
1280 (format "@multitable %s\n%s@end multitable"
1284 (defun org-texinfo-table-column-widths (table info
)
1285 "Determine the largest table cell in each column to process alignment.
1286 TABLE is the table element to transcode. INFO is a plist used as
1287 a communication channel."
1288 (let ((widths (make-vector (cdr (org-export-table-dimensions table info
)) 0)))
1289 (org-element-map table
'table-row
1292 (org-element-map row
'table-cell
1294 ;; Length of the cell in the original buffer is only an
1295 ;; approximation of the length of the cell in the
1296 ;; output. It can sometimes fail (e.g. it considers
1297 ;; "/a/" being larger than "ab").
1298 (let ((w (- (org-element-property :contents-end cell
)
1299 (org-element-property :contents-begin cell
))))
1300 (aset widths idx
(max w
(aref widths idx
))))
1304 (format "{%s}" (mapconcat (lambda (w) (make-string w ?a
)) widths
"} {"))))
1308 (defun org-texinfo-table-cell (table-cell contents info
)
1309 "Transcode a TABLE-CELL element from Org to Texinfo.
1310 CONTENTS is the cell contents. INFO is a plist used as
1311 a communication channel."
1313 (let ((scientific-notation
1314 (plist-get info
:texinfo-table-scientific-notation
)))
1317 (string-match orgtbl-exp-regexp contents
))
1318 ;; Use appropriate format string for scientific notation.
1319 (format scientific-notation
1320 (match-string 1 contents
)
1321 (match-string 2 contents
))
1323 (when (org-export-get-next-element table-cell info
) "\n@tab ")))
1327 (defun org-texinfo-table-row (table-row contents info
)
1328 "Transcode a TABLE-ROW element from Org to Texinfo.
1329 CONTENTS is the contents of the row. INFO is a plist used as
1330 a communication channel."
1331 ;; Rules are ignored since table separators are deduced from
1332 ;; borders of the current row.
1333 (when (eq (org-element-property :type table-row
) 'standard
)
1335 (if (and (= 1 (org-export-table-row-group table-row info
))
1336 (org-export-table-has-header-p
1337 (org-export-get-parent-table table-row
) info
))
1340 (concat rowgroup-tag contents
"\n"))))
1344 (defun org-texinfo-target (target contents info
)
1345 "Transcode a TARGET object from Org to Texinfo.
1346 CONTENTS is nil. INFO is a plist holding contextual
1348 (format "@anchor{%s}" (org-export-get-reference target info
)))
1352 (defun org-texinfo-timestamp (timestamp contents info
)
1353 "Transcode a TIMESTAMP object from Org to Texinfo.
1354 CONTENTS is nil. INFO is a plist holding contextual
1356 (let ((value (org-texinfo-plain-text
1357 (org-timestamp-translate timestamp
) info
)))
1358 (case (org-element-property :type timestamp
)
1359 ((active active-range
)
1360 (format (plist-get info
:texinfo-active-timestamp-format
) value
))
1361 ((inactive inactive-range
)
1362 (format (plist-get info
:texinfo-inactive-timestamp-format
) value
))
1363 (t (format (plist-get info
:texinfo-diary-timestamp-format
) value
)))))
1367 (defun org-texinfo-verbatim (verbatim contents info
)
1368 "Transcode a VERBATIM object from Org to Texinfo.
1369 CONTENTS is nil. INFO is a plist used as a communication
1371 (org-texinfo--text-markup
1372 (org-element-property :value verbatim
) 'verbatim info
))
1376 (defun org-texinfo-verse-block (verse-block contents info
)
1377 "Transcode a VERSE-BLOCK element from Org to Texinfo.
1378 CONTENTS is verse block contents. INFO is a plist holding
1379 contextual information."
1380 (format "@display\n%s@end display" contents
))
1383 ;;; Interactive functions
1385 (defun org-texinfo-export-to-texinfo
1386 (&optional async subtreep visible-only body-only ext-plist
)
1387 "Export current buffer to a Texinfo file.
1389 If narrowing is active in the current buffer, only export its
1392 If a region is active, export that region.
1394 A non-nil optional argument ASYNC means the process should happen
1395 asynchronously. The resulting file should be accessible through
1396 the `org-export-stack' interface.
1398 When optional argument SUBTREEP is non-nil, export the sub-tree
1399 at point, extracting information from the headline properties
1402 When optional argument VISIBLE-ONLY is non-nil, don't export
1403 contents of hidden elements.
1405 When optional argument BODY-ONLY is non-nil, only write code
1406 between \"\\begin{document}\" and \"\\end{document}\".
1408 EXT-PLIST, when provided, is a property list with external
1409 parameters overriding Org default settings, but still inferior to
1410 file-local settings.
1412 Return output file's name."
1414 (let ((outfile (org-export-output-file-name ".texi" subtreep
))
1415 (org-export-coding-system org-texinfo-coding-system
))
1416 (org-export-to-file 'texinfo outfile
1417 async subtreep visible-only body-only ext-plist
)))
1419 (defun org-texinfo-export-to-info
1420 (&optional async subtreep visible-only body-only ext-plist
)
1421 "Export current buffer to Texinfo then process through to INFO.
1423 If narrowing is active in the current buffer, only export its
1426 If a region is active, export that region.
1428 A non-nil optional argument ASYNC means the process should happen
1429 asynchronously. The resulting file should be accessible through
1430 the `org-export-stack' interface.
1432 When optional argument SUBTREEP is non-nil, export the sub-tree
1433 at point, extracting information from the headline properties
1436 When optional argument VISIBLE-ONLY is non-nil, don't export
1437 contents of hidden elements.
1439 When optional argument BODY-ONLY is non-nil, only write code
1440 between \"\\begin{document}\" and \"\\end{document}\".
1442 EXT-PLIST, when provided, is a property list with external
1443 parameters overriding Org default settings, but still inferior to
1444 file-local settings.
1446 When optional argument PUB-DIR is set, use it as the publishing
1449 Return INFO file's name."
1451 (let ((outfile (org-export-output-file-name ".texi" subtreep
))
1452 (org-export-coding-system org-texinfo-coding-system
))
1453 (org-export-to-file 'texinfo outfile
1454 async subtreep visible-only body-only ext-plist
1455 (lambda (file) (org-texinfo-compile file
)))))
1458 (defun org-texinfo-publish-to-texinfo (plist filename pub-dir
)
1459 "Publish an org file to Texinfo.
1461 FILENAME is the filename of the Org file to be published. PLIST
1462 is the property list for the given project. PUB-DIR is the
1463 publishing directory.
1465 Return output file name."
1466 (org-publish-org-to 'texinfo filename
".texi" plist pub-dir
))
1469 (defun org-texinfo-convert-region-to-texinfo ()
1470 "Assume the current region has org-mode syntax, and convert it to Texinfo.
1471 This can be used in any buffer. For example, you can write an
1472 itemized list in org-mode syntax in an Texinfo buffer and use
1473 this command to convert it."
1475 (org-export-replace-region-by 'texinfo
))
1477 (defun org-texinfo-compile (file)
1478 "Compile a texinfo file.
1480 FILE is the name of the file being compiled. Processing is
1481 done through the command specified in `org-texinfo-info-process'.
1483 Return INFO file name or an error if it couldn't be produced."
1484 (let* ((base-name (file-name-sans-extension (file-name-nondirectory file
)))
1485 (full-name (file-truename file
))
1486 (out-dir (file-name-directory file
))
1487 ;; Properly set working directory for compilation.
1488 (default-directory (if (file-name-absolute-p file
)
1489 (file-name-directory full-name
)
1492 (message (format "Processing Texinfo file %s..." file
))
1493 (save-window-excursion
1494 ;; Replace %b, %f and %o with appropriate values in each command
1495 ;; before applying it. Output is redirected to "*Org INFO
1496 ;; Texinfo Output*" buffer.
1497 (let ((outbuf (get-buffer-create "*Org INFO Texinfo Output*")))
1498 (dolist (command org-texinfo-info-process
)
1500 (replace-regexp-in-string
1501 "%b" (shell-quote-argument base-name
)
1502 (replace-regexp-in-string
1503 "%f" (shell-quote-argument full-name
)
1504 (replace-regexp-in-string
1505 "%o" (shell-quote-argument out-dir
) command t t
) t t
) t t
)
1507 ;; Collect standard errors from output buffer.
1508 (setq errors
(org-texinfo-collect-errors outbuf
)))
1509 (let ((infofile (concat out-dir base-name
".info")))
1510 ;; Check for process failure. Provide collected errors if
1512 (if (not (file-exists-p infofile
))
1513 (error (concat (format "INFO file %s wasn't produced" infofile
)
1514 (when errors
(concat ": " errors
))))
1515 ;; Else remove log files, when specified, and signal end of
1516 ;; process to user, along with any error encountered.
1517 (when org-texinfo-remove-logfiles
1518 (dolist (ext org-texinfo-logfiles-extensions
)
1519 (let ((file (concat out-dir base-name
"." ext
)))
1520 (when (file-exists-p file
) (delete-file file
)))))
1521 (message (concat "Process completed"
1522 (if (not errors
) "."
1523 (concat " with errors: " errors
)))))
1524 ;; Return output file name.
1527 (defun org-texinfo-collect-errors (buffer)
1528 "Collect some kind of errors from \"makeinfo\" command output.
1530 BUFFER is the buffer containing output.
1532 Return collected error types as a string, or nil if there was
1534 (with-current-buffer buffer
1536 (goto-char (point-min))
1537 ;; Find final "makeinfo" run.
1539 (let ((case-fold-search t
)
1541 (when (save-excursion
1542 (re-search-forward "perhaps incorrect sectioning?" nil t
))
1543 (setq errors
(concat errors
" [incorrect sectioning]")))
1544 (when (save-excursion
1545 (re-search-forward "missing close brace" nil t
))
1546 (setq errors
(concat errors
" [syntax error]")))
1547 (when (save-excursion
1548 (re-search-forward "Unknown command" nil t
))
1549 (setq errors
(concat errors
" [undefined @command]")))
1550 (when (save-excursion
1551 (re-search-forward "No matching @end" nil t
))
1552 (setq errors
(concat errors
" [block incomplete]")))
1553 (when (save-excursion
1554 (re-search-forward "requires a sectioning" nil t
))
1555 (setq errors
(concat errors
" [invalid section command]")))
1556 (when (save-excursion
1557 (re-search-forward "\\[unexpected\]" nil t
))
1558 (setq errors
(concat errors
" [unexpected error]")))
1559 (when (save-excursion
1560 (re-search-forward "misplaced " nil t
))
1561 (setq errors
(concat errors
" [syntax error]")))
1562 (and (org-string-nw-p errors
) (org-trim errors
)))))))
1565 (provide 'ox-texinfo
)
1568 ;; generated-autoload-file: "org-loaddefs.el"
1571 ;;; ox-texinfo.el ends here