1 ;;; org-docbook.el --- DocBook exporter for org-mode
3 ;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
5 ;; Emacs Lisp Archive Entry
6 ;; Filename: org-docbook.el
8 ;; Author: Baoqiu Cui <cbaoqiu AT yahoo DOT com>
9 ;; Maintainer: Baoqiu Cui <cbaoqiu AT yahoo DOT com>
10 ;; Keywords: org, wp, docbook
11 ;; Description: Converts an org-mode buffer into DocBook
14 ;; This file is part of GNU Emacs.
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 ;; This library implements a DocBook exporter for org-mode. The basic
32 ;; idea and design is very similar to what `org-export-as-html' has.
33 ;; Code prototype was also started with `org-export-as-html'.
35 ;; Put this file into your load-path and the following line into your
38 ;; (require 'org-docbook)
40 ;; The interactive functions are similar to those of the HTML and LaTeX
43 ;; M-x `org-export-as-docbook'
44 ;; M-x `org-export-as-docbook-pdf'
45 ;; M-x `org-export-as-docbook-pdf-and-open'
46 ;; M-x `org-export-as-docbook-batch'
47 ;; M-x `org-export-as-docbook-to-buffer'
48 ;; M-x `org-export-region-as-docbook'
49 ;; M-x `org-replace-region-by-docbook'
51 ;; Note that, in order to generate PDF files using the DocBook XML files
52 ;; created by DocBook exporter, the following two variables have to be
53 ;; set based on what DocBook tools you use for XSLT processor and XSL-FO
56 ;; org-export-docbook-xslt-proc-command
57 ;; org-export-docbook-xsl-fo-proc-command
59 ;; Check the document of these two variables to see examples of how they
62 ;; If the Org file to be exported contains special characters written in
63 ;; TeX-like syntax, like \alpha and \beta, you need to include the right
64 ;; entity file(s) in the DOCTYPE declaration for the DocBook XML file.
65 ;; This is required to make the DocBook XML file valid. The DOCTYPE
66 ;; declaration string can be set using the following variable:
68 ;; org-export-docbook-doctype
79 (require 'format-spec
)
83 (defvar org-docbook-para-open nil
)
84 (defvar org-export-docbook-inline-images t
)
85 (defvar org-export-docbook-link-org-files-as-docbook nil
)
87 (declare-function org-id-find-id-file
"org-id" (id))
91 (defgroup org-export-docbook nil
92 "Options for exporting Org-mode files to DocBook."
93 :tag
"Org Export DocBook"
96 (defcustom org-export-docbook-extension
".xml"
97 "Extension of DocBook XML files."
98 :group
'org-export-docbook
101 (defcustom org-export-docbook-header
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
102 "Header of DocBook XML files."
103 :group
'org-export-docbook
106 (defcustom org-export-docbook-doctype nil
107 "DOCTYPE declaration string for DocBook XML files.
108 This can be used to include entities that are needed to handle
109 special characters in Org files.
111 For example, if the Org file to be exported contains XHTML
112 entities, you can set this variable to:
114 \"<!DOCTYPE article [
115 <!ENTITY % xhtml1-symbol PUBLIC
116 \"-//W3C//ENTITIES Symbol for HTML//EN//XML\"
117 \"http://www.w3.org/2003/entities/2007/xhtml1-symbol.ent\"
123 If you want to process DocBook documents without an Internet
124 connection, it is suggested that you download the required entity
125 file(s) and use system identifier(s) (external files) in the
126 DOCTYPE declaration."
127 :group
'org-export-docbook
130 (defcustom org-export-docbook-article-header
"<article xmlns=\"http://docbook.org/ns/docbook\"
131 xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"5.0\" xml:lang=\"en\">"
132 "Article header of DocBook XML files."
133 :group
'org-export-docbook
136 (defcustom org-export-docbook-section-id-prefix
"sec-"
137 "Prefix of section IDs used during exporting.
138 This can be set before exporting to avoid same set of section IDs
139 being used again and again, which can be a problem when multiple
140 people work on the same document."
141 :group
'org-export-docbook
144 (defcustom org-export-docbook-footnote-id-prefix
"fn-"
145 "The prefix of footnote IDs used during exporting.
146 Like `org-export-docbook-section-id-prefix', this variable can help
147 avoid same set of footnote IDs being used multiple times."
148 :group
'org-export-docbook
151 (defcustom org-export-docbook-emphasis-alist
152 `(("*" "<emphasis role=\"bold\">" "</emphasis>")
153 ("/" "<emphasis>" "</emphasis>")
154 ("_" "<emphasis role=\"underline\">" "</emphasis>")
155 ("=" "<code>" "</code>")
156 ("~" "<literal>" "</literal>")
157 ("+" "<emphasis role=\"strikethrough\">" "</emphasis>"))
158 "A list of DocBook expressions to convert emphasis fontifiers.
159 Each element of the list is a list of three elements.
160 The first element is the character used as a marker for fontification.
161 The second element is a formatting string to wrap fontified text with.
162 The third element decides whether to protect converted text from other
164 :group
'org-export-docbook
167 (defcustom org-export-docbook-default-image-attributes
168 `(("align" .
"\"center\"")
169 ("valign".
"\"middle\""))
170 "Alist of default DocBook image attributes.
171 These attributes will be inserted into element <imagedata> by
172 default, but users can override them using `#+ATTR_DocBook:'."
173 :group
'org-export-docbook
176 (defcustom org-export-docbook-inline-image-extensions
177 '("jpeg" "jpg" "png" "gif" "svg")
178 "Extensions of image files that can be inlined into DocBook."
179 :group
'org-export-docbook
180 :type
'(repeat (string :tag
"Extension")))
182 (defcustom org-export-docbook-coding-system nil
183 "Coding system for DocBook XML files."
184 :group
'org-export-docbook
185 :type
'coding-system
)
187 (defcustom org-export-docbook-xslt-stylesheet nil
188 "File name of the XSLT stylesheet used by DocBook exporter.
189 This XSLT stylesheet is used by
190 `org-export-docbook-xslt-proc-command' to generate the Formatting
191 Object (FO) files. You can use either `fo/docbook.xsl' that
192 comes with DocBook, or any customization layer you may have."
193 :group
'org-export-docbook
196 (defcustom org-export-docbook-xslt-proc-command nil
197 "Format of XSLT processor command used by DocBook exporter.
198 This command is used to process a DocBook XML file to generate
199 the Formatting Object (FO) file.
201 The value of this variable should be a format control string that
202 includes three arguments: `%i', `%o', and `%s'. During exporting
203 time, `%i' is replaced by the input DocBook XML file name, `%o'
204 is replaced by the output FO file name, and `%s' is replaced by
205 `org-export-docbook-xslt-stylesheet' (or the #+XSLT option if it
206 is specified in the Org file).
208 For example, if you use Saxon as the XSLT processor, you may want
209 to set the variable to
211 \"java com.icl.saxon.StyleSheet -o %o %i %s\"
213 If you use Xalan, you can set it to
215 \"java org.apache.xalan.xslt.Process -out %o -in %i -xsl %s\"
217 For xsltproc, the following string should work:
219 \"xsltproc --output %o %s %i\"
221 You can include additional stylesheet parameters in this command.
222 Just make sure that they meet the syntax requirement of each
224 :group
'org-export-docbook
227 (defcustom org-export-docbook-xsl-fo-proc-command nil
228 "Format of XSL-FO processor command used by DocBook exporter.
229 This command is used to process a Formatting Object (FO) file to
230 generate the PDF file.
232 The value of this variable should be a format control string that
233 includes two arguments: `%i' and `%o'. During exporting time,
234 `%i' is replaced by the input FO file name, and `%o' is replaced
235 by the output PDF file name.
237 For example, if you use FOP as the XSL-FO processor, you can set
241 :group
'org-export-docbook
244 (defcustom org-export-docbook-keywords-markup
"<literal>%s</literal>"
245 "A printf format string to be applied to keywords by DocBook exporter."
246 :group
'org-export-docbook
249 (defcustom org-export-docbook-timestamp-markup
"<emphasis>%s</emphasis>"
250 "A printf format string to be applied to time stamps by DocBook exporter."
251 :group
'org-export-docbook
256 (defvar org-export-docbook-final-hook nil
257 "Hook run at the end of DocBook export, in the new buffer.")
259 ;;; Autoload functions:
262 (defun org-export-as-docbook-batch ()
263 "Call `org-export-as-docbook' in batch style.
264 This function can be used in batch processing.
269 --load=$HOME/lib/emacs/org.el
270 --visit=MyOrgFile.org --funcall org-export-as-docbook-batch"
271 (org-export-as-docbook 'hidden
))
274 (defun org-export-as-docbook-to-buffer ()
275 "Call `org-export-as-docbook' with output to a temporary buffer.
278 (org-export-as-docbook nil nil
"*Org DocBook Export*")
279 (when org-export-show-temporary-export-buffer
280 (switch-to-buffer-other-window "*Org DocBook Export*")))
283 (defun org-replace-region-by-docbook (beg end
)
284 "Replace the region from BEG to END with its DocBook export.
285 It assumes the region has `org-mode' syntax, and then convert it to
286 DocBook. This can be used in any buffer. For example, you could
287 write an itemized list in `org-mode' syntax in an DocBook buffer and
288 then use this command to convert it."
290 (let (reg docbook buf
)
291 (save-window-excursion
293 (setq docbook
(org-export-region-as-docbook
295 (setq reg
(buffer-substring beg end
)
296 buf
(get-buffer-create "*Org tmp*"))
297 (with-current-buffer buf
301 (setq docbook
(org-export-region-as-docbook
302 (point-min) (point-max) t
'string
)))
304 (delete-region beg end
)
308 (defun org-export-region-as-docbook (beg end
&optional body-only buffer
)
309 "Convert region from BEG to END in `org-mode' buffer to DocBook.
310 If prefix arg BODY-ONLY is set, omit file header and footer and
311 only produce the region of converted text, useful for
312 cut-and-paste operations. If BUFFER is a buffer or a string,
313 use/create that buffer as a target of the converted DocBook. If
314 BUFFER is the symbol `string', return the produced DocBook as a
315 string and leave not buffer behind. For example, a Lisp program
316 could call this function in the following way:
318 (setq docbook (org-export-region-as-docbook beg end t 'string))
320 When called interactively, the output buffer is selected, and shown
321 in a window. A non-interactive call will only return the buffer."
323 (when (interactive-p)
324 (setq buffer
"*Org DocBook Export*"))
325 (let ((transient-mark-mode t
)
329 (set-mark (point)) ;; To activate the region
331 (setq rtn
(org-export-as-docbook
334 (if (fboundp 'deactivate-mark
) (deactivate-mark))
335 (if (and (interactive-p) (bufferp rtn
))
336 (switch-to-buffer-other-window rtn
)
340 (defun org-export-as-docbook-pdf (&optional hidden ext-plist
341 to-buffer body-only pub-dir
)
342 "Export as DocBook XML file, and generate PDF file."
344 (if (or (not org-export-docbook-xslt-proc-command
)
345 (not (string-match "%[ios].+%[ios].+%[ios]" org-export-docbook-xslt-proc-command
)))
346 (error "XSLT processor command is not set correctly"))
347 (if (or (not org-export-docbook-xsl-fo-proc-command
)
348 (not (string-match "%[io].+%[io]" org-export-docbook-xsl-fo-proc-command
)))
349 (error "XSL-FO processor command is not set correctly"))
350 (message "Exporting to PDF...")
351 (let* ((wconfig (current-window-configuration))
353 (org-export-process-option-filters
354 (org-combine-plists (org-default-export-plist)
356 (org-infile-export-plist))))
357 (docbook-buf (org-export-as-docbook hidden ext-plist
358 to-buffer body-only pub-dir
))
359 (filename (buffer-file-name docbook-buf
))
360 (base (file-name-sans-extension filename
))
361 (fofile (concat base
".fo"))
362 (pdffile (concat base
".pdf")))
363 (and (file-exists-p pdffile
) (delete-file pdffile
))
364 (message "Processing DocBook XML file...")
365 (shell-command (format-spec org-export-docbook-xslt-proc-command
367 ?i
(shell-quote-argument filename
)
368 ?o
(shell-quote-argument fofile
)
369 ?s
(shell-quote-argument
370 (or (plist-get opt-plist
:xslt
)
371 org-export-docbook-xslt-stylesheet
)))))
372 (shell-command (format-spec org-export-docbook-xsl-fo-proc-command
374 ?i
(shell-quote-argument fofile
)
375 ?o
(shell-quote-argument pdffile
))))
376 (message "Processing DocBook file...done")
377 (if (not (file-exists-p pdffile
))
378 (error "PDF file was not produced")
379 (set-window-configuration wconfig
)
380 (message "Exporting to PDF...done")
384 (defun org-export-as-docbook-pdf-and-open ()
385 "Export as DocBook XML file, generate PDF file, and open it."
387 (let ((pdffile (org-export-as-docbook-pdf)))
389 (org-open-file pdffile
)
390 (error "PDF file was not produced"))))
393 (defun org-export-as-docbook (&optional hidden ext-plist
394 to-buffer body-only pub-dir
)
395 "Export the current buffer as a DocBook file.
396 If there is an active region, export only the region. When
397 HIDDEN is obsolete and does nothing. EXT-PLIST is a
398 property list with external parameters overriding org-mode's
399 default settings, but still inferior to file-local settings.
400 When TO-BUFFER is non-nil, create a buffer with that name and
401 export to that buffer. If TO-BUFFER is the symbol `string',
402 don't leave any buffer behind but just return the resulting HTML
403 as a string. When BODY-ONLY is set, don't produce the file
404 header and footer, simply return the content of the document (all
405 top-level sections). When PUB-DIR is set, use this as the
406 publishing directory."
408 (run-hooks 'org-export-first-hook
)
410 ;; Make sure we have a file name when we need it.
411 (when (and (not (or to-buffer body-only
))
412 (not buffer-file-name
))
413 (if (buffer-base-buffer)
414 (org-set-local 'buffer-file-name
415 (with-current-buffer (buffer-base-buffer)
417 (error "Need a file name to be able to export")))
419 (message "Exporting...")
420 (setq-default org-todo-line-regexp org-todo-line-regexp
)
421 (setq-default org-deadline-line-regexp org-deadline-line-regexp
)
422 (setq-default org-done-keywords org-done-keywords
)
423 (setq-default org-maybe-keyword-time-regexp org-maybe-keyword-time-regexp
)
425 (org-export-process-option-filters
426 (org-combine-plists (org-default-export-plist)
428 (org-infile-export-plist))))
429 (link-validate (plist-get opt-plist
:link-validation-function
))
431 (odd org-odd-levels-only
)
432 (region-p (org-region-active-p))
433 (rbeg (and region-p
(region-beginning)))
434 (rend (and region-p
(region-end)))
436 (if (plist-get opt-plist
:ignore-subtree-p
)
441 (and (org-at-heading-p)
442 (>= (org-end-of-subtree t t
) rend
))))))
443 (level-offset (if subtree-p
446 (+ (funcall outline-level
)
447 (if org-odd-levels-only
1 0)))
449 (opt-plist (setq org-export-opt-plist
451 (org-export-add-subtree-options opt-plist rbeg
)
453 ;; The following two are dynamically scoped into other
455 (org-current-export-dir
456 (or pub-dir
(org-export-directory :docbook opt-plist
)))
457 (org-current-export-file buffer-file-name
)
458 (level 0) (line "") (origline "") txt todo
459 (filename (if to-buffer nil
462 (file-name-sans-extension
464 (org-entry-get (region-beginning)
465 "EXPORT_FILE_NAME" t
))
466 (file-name-nondirectory buffer-file-name
)))
467 org-export-docbook-extension
)
468 (file-name-as-directory
469 (or pub-dir
(org-export-directory :docbook opt-plist
))))))
470 (current-dir (if buffer-file-name
471 (file-name-directory buffer-file-name
)
473 (buffer (if to-buffer
475 ((eq to-buffer
'string
) (get-buffer-create "*Org DocBook Export*"))
476 (t (get-buffer-create to-buffer
)))
477 (find-file-noselect filename
)))
478 ;; org-levels-open is a global variable
479 (org-levels-open (make-vector org-level-max nil
))
480 (date (plist-get opt-plist
:date
))
481 (author (or (plist-get opt-plist
:author
)
483 (email (plist-get opt-plist
:email
))
484 firstname othername surname
485 (title (or (and subtree-p
(org-export-get-title-from-subtree))
486 (plist-get opt-plist
:title
)
488 (plist-get opt-plist
:skip-before-1st-heading
))
489 (org-export-grab-title-from-buffer))
490 (and buffer-file-name
491 (file-name-sans-extension
492 (file-name-nondirectory buffer-file-name
)))
494 ;; We will use HTML table formatter to export tables to DocBook
495 ;; format, so need to set html-table-tag here.
496 (html-table-tag (plist-get opt-plist
:html-table-tag
))
497 (quote-re0 (concat "^[ \t]*" org-quote-string
"\\>"))
498 (quote-re (concat "^\\(\\*+\\)\\([ \t]+" org-quote-string
"\\>\\)"))
503 (local-list-type nil
)
504 (local-list-indent nil
)
505 (llt org-plain-list-ordered-item-terminator
)
506 (email (plist-get opt-plist
:email
))
507 (language (plist-get opt-plist
:language
))
511 (coding-system (and (boundp 'buffer-file-coding-system
)
512 buffer-file-coding-system
))
513 (coding-system-for-write (or org-export-docbook-coding-system
515 (save-buffer-coding-system (or org-export-docbook-coding-system
517 (charset (and coding-system-for-write
518 (fboundp 'coding-system-get
)
519 (coding-system-get coding-system-for-write
523 (if region-p
(region-beginning) (point-min))
524 (if region-p
(region-end) (point-max))))
527 (org-export-preprocess-string
531 :skip-before-1st-heading
532 (plist-get opt-plist
:skip-before-1st-heading
)
533 :drawers
(plist-get opt-plist
:drawers
)
534 :todo-keywords
(plist-get opt-plist
:todo-keywords
)
535 :tags
(plist-get opt-plist
:tags
)
536 :priority
(plist-get opt-plist
:priority
)
537 :footnotes
(plist-get opt-plist
:footnotes
)
538 :timestamps
(plist-get opt-plist
:timestamps
)
540 (plist-get opt-plist
:archived-trees
)
541 :select-tags
(plist-get opt-plist
:select-tags
)
542 :exclude-tags
(plist-get opt-plist
:exclude-tags
)
544 (plist-get opt-plist
:text
)
546 (plist-get opt-plist
:LaTeX-fragments
))
548 ;; Use literal output to show check boxes.
550 (nth 1 (assoc "=" org-export-docbook-emphasis-alist
)))
552 (nth 2 (assoc "=" org-export-docbook-emphasis-alist
)))
554 table-buffer table-orig-buffer
555 ind item-type starter
556 rpl path attr caption label desc descp desc1 desc2 link
557 fnc item-tag item-number
558 footref-seen footnote-list
562 ;; Fine detailed info about author name.
563 (if (string-match "\\([^ ]+\\) \\(.+ \\)?\\([^ ]+\\)" author
)
565 (setq firstname
(match-string 1 author
)
566 othername
(or (match-string 2 author
) "")
567 surname
(match-string 3 author
))))
569 ;; Get all footnote text.
571 (org-export-docbook-get-footnotes lines
))
573 (let ((inhibit-read-only t
))
575 (remove-text-properties (point-min) (point-max)
576 '(:org-license-to-kill t
))))
578 (setq org-min-level
(org-get-min-level lines level-offset
))
579 (setq org-last-level org-min-level
)
580 (org-init-section-numbers)
582 ;; Get and save the date.
584 ((and date
(string-match "%" date
))
585 (setq date
(format-time-string date
)))
587 (t (setq date
(format-time-string "%Y-%m-%d %T %Z"))))
589 ;; Get the language-dependent settings
590 (setq lang-words
(or (assoc language org-export-language-setup
)
591 (assoc "en" org-export-language-setup
)))
593 ;; Switch to the output buffer. Use fundamental-mode for now. We
594 ;; could turn on nXML mode later and do some indentation.
596 (let ((inhibit-read-only t
)) (erase-buffer))
598 (org-install-letbind)
600 (and (fboundp 'set-buffer-file-coding-system
)
601 (set-buffer-file-coding-system coding-system-for-write
))
604 (let ((case-fold-search nil
)
605 (org-odd-levels-only odd
))
607 ;; Create local variables for all options, to make sure all called
608 ;; functions get the correct information
610 (set (make-local-variable (nth 2 x
))
611 (plist-get opt-plist
(car x
))))
612 org-export-plist-vars
)
614 ;; Insert DocBook file header, title, and author info.
616 (insert org-export-docbook-header
)
617 (if org-export-docbook-doctype
618 (insert org-export-docbook-doctype
))
619 (insert "<!-- Date: " date
" -->\n")
620 (insert (format "<!-- DocBook XML file generated by Org-mode %s Emacs %s -->\n"
621 org-version emacs-major-version
))
622 (insert org-export-docbook-article-header
)
624 "\n <title>%s</title>
628 <firstname>%s</firstname> <othername>%s</othername> <surname>%s</surname>
633 (org-docbook-expand title
)
634 firstname othername surname
635 (if (and org-export-email-info
636 email
(string-match "\\S-" email
))
637 (concat "<email>" email
"</email>") "")
640 (org-init-section-numbers)
642 (org-export-docbook-open-para)
644 ;; Loop over all the lines...
645 (while (setq line
(pop lines
) origline line
)
648 ;; End of quote section?
649 (when (and inquote
(string-match "^\\*+ " line
))
650 (insert "]]></programlisting>\n")
651 (org-export-docbook-open-para)
653 ;; Inside a quote section?
655 (insert (org-docbook-protect line
) "\n")
656 (throw 'nextline nil
))
658 ;; Fixed-width, verbatim lines (examples)
659 (when (and org-export-with-fixed-width
660 (string-match "^[ \t]*:\\(\\([ \t]\\|$\\)\\(.*\\)\\)" line
))
663 (org-export-docbook-close-para-maybe)
664 (insert "<programlisting><![CDATA["))
665 (insert (match-string 3 line
) "\n")
666 (when (or (not lines
)
667 (not (string-match "^[ \t]*\\(:.*\\)"
670 (insert "]]></programlisting>\n")
671 (org-export-docbook-open-para))
672 (throw 'nextline nil
))
674 ;; List ender: close every open list.
675 (when (equal "ORG-LIST-END" line
)
676 (while local-list-type
677 (let ((listtype (car local-list-type
)))
678 (org-export-docbook-close-li listtype
)
680 ((equal listtype
"o") "</orderedlist>\n")
681 ((equal listtype
"u") "</itemizedlist>\n")
682 ((equal listtype
"d") "</variablelist>\n"))))
683 (pop local-list-type
))
684 ;; We did close a list, normal text follows: need <para>
685 (org-export-docbook-open-para)
686 (setq local-list-indent nil
688 (throw 'nextline nil
))
691 (when (get-text-property 0 'org-protected line
)
692 (let (par (ind (get-text-property 0 'original-indentation line
)))
693 (when (re-search-backward
694 "\\(<para>\\)\\([ \t\r\n]*\\)\\=" (- (point) 100) t
)
695 (setq par
(match-string 1))
696 (replace-match "\\2\n"))
699 (or (= (length (car lines
)) 0)
701 (equal ind
(get-text-property 0 'original-indentation
(car lines
))))
702 (or (= (length (car lines
)) 0)
703 (get-text-property 0 'org-protected
(car lines
))))
704 (insert (pop lines
) "\n"))
705 (and par
(insert "<para>\n")))
706 (throw 'nextline nil
))
708 ;; Start of block quotes and verses
709 (when (or (equal "ORG-BLOCKQUOTE-START" line
)
710 (and (equal "ORG-VERSE-START" line
)
712 (org-export-docbook-close-para-maybe)
713 (insert "<blockquote>")
714 ;; Check whether attribution for this blockquote exists.
717 (end (if inverse
"ORG-VERSE-END" "ORG-BLOCKQUOTE-END"))
719 (while (and (setq tmp1
(pop lines
))
720 (not (equal end tmp1
)))
721 (push tmp1 quote-lines
))
722 (push tmp1 lines
) ; Put back quote end mark
723 ;; Check the last line in the quote to see if it contains
725 (setq tmp1
(pop quote-lines
))
726 (if (string-match "\\(^.*\\)\\(--[ \t]+\\)\\(.+\\)$" tmp1
)
728 (setq attribution
(match-string 3 tmp1
))
729 (when (save-match-data
730 (string-match "[^ \t]" (match-string 1 tmp1
)))
731 (push (match-string 1 tmp1
) lines
)))
733 (while (setq tmp1
(pop quote-lines
))
736 (insert "<attribution>" attribution
"</attribution>")))
737 ;; Insert <literallayout> for verse.
739 (insert "\n<literallayout>")
740 (org-export-docbook-open-para))
741 (throw 'nextline nil
))
743 ;; End of block quotes
744 (when (equal "ORG-BLOCKQUOTE-END" line
)
745 (org-export-docbook-close-para-maybe)
746 (insert "</blockquote>\n")
747 (org-export-docbook-open-para)
748 (throw 'nextline nil
))
751 (when (equal "ORG-VERSE-END" line
)
752 (insert "</literallayout>\n</blockquote>\n")
753 (org-export-docbook-open-para)
755 (throw 'nextline nil
))
757 ;; Text centering. Element <para role="centered"> does not
758 ;; seem to work with FOP, so for now we use <informaltable> to
759 ;; center the text, which can contain multiple paragraphs.
760 (when (equal "ORG-CENTER-START" line
)
761 (org-export-docbook-close-para-maybe)
762 (insert "<informaltable frame=\"none\" colsep=\"0\" rowsep=\"0\">\n"
763 "<tgroup align=\"center\" cols=\"1\">\n"
764 "<tbody><row><entry>\n")
765 (org-export-docbook-open-para)
766 (throw 'nextline nil
))
768 (when (equal "ORG-CENTER-END" line
)
769 (org-export-docbook-close-para-maybe)
770 (insert "</entry></row></tbody>\n"
771 "</tgroup>\n</informaltable>\n")
772 (org-export-docbook-open-para)
773 (throw 'nextline nil
))
775 ;; Make targets to anchors. Note that currently FOP does not
776 ;; seem to support <anchor> tags when generating PDF output,
777 ;; but this can be used in DocBook --> HTML conversion.
780 "<<<?\\([^<>]*\\)>>>?\\((INVISIBLE)\\)?[ \t]*\n?" line start
)
782 ((get-text-property (match-beginning 1) 'org-protected line
)
783 (setq start
(match-end 1)))
785 (setq line
(replace-match
786 (format "@<anchor xml:id=\"%s\"/>"
787 (org-solidify-link-text (match-string 1 line
)))
790 (setq line
(replace-match
791 (format "@<anchor xml:id=\"%s\"/>"
792 (org-solidify-link-text (match-string 1 line
)))
795 ;; Put time stamps and related keywords into special mark-up
797 (setq line
(org-export-docbook-handle-time-stamps line
))
799 ;; Replace "&", "<" and ">" by "&", "<" and ">".
800 ;; Handle @<..> HTML tags (replace "@>..<" by "<..>").
801 ;; Also handle sub_superscripts and check boxes.
802 (or (string-match org-table-hline-regexp line
)
803 (setq line
(org-docbook-expand line
)))
807 (while (string-match org-bracket-link-analytic-regexp
++ line start
)
808 (setq start
(match-beginning 0))
809 (setq path
(save-match-data (org-link-unescape
810 (match-string 3 line
))))
812 ((match-end 2) (match-string 2 line
))
814 (or (file-name-absolute-p path
)
815 (string-match "^\\.\\.?/" path
)))
818 (setq path
(org-extract-attributes (org-link-unescape path
)))
819 (setq attr
(get-text-property 0 'org-attributes path
)
820 caption
(get-text-property 0 'org-caption path
)
821 label
(get-text-property 0 'org-label path
))
822 (setq desc1
(if (match-end 5) (match-string 5 line
))
823 desc2
(if (match-end 2) (concat type
":" path
) path
)
824 descp
(and desc1
(not (equal desc1 desc2
)))
825 desc
(or desc1 desc2
))
826 ;; Make an image out of the description if that is so wanted
827 (when (and descp
(org-file-image-p
828 desc org-export-docbook-inline-image-extensions
))
830 (if (string-match "^file:" desc
)
831 (setq desc
(substring desc
(match-end 0))))))
832 ;; FIXME: do we need to unescape here somewhere?
834 ((equal type
"internal")
835 (setq rpl
(format "<link linkend=\"%s\">%s</link>"
836 (org-solidify-link-text
837 (save-match-data (org-link-unescape path
)) nil
)
838 (org-export-docbook-format-desc desc
))))
839 ((and (equal type
"id")
840 (setq id-file
(org-id-find-id-file path
)))
841 ;; This is an id: link to another file (if it was the same file,
842 ;; it would have become an internal link...)
844 (setq id-file
(file-relative-name
845 id-file
(file-name-directory org-current-export-file
)))
846 (setq id-file
(concat (file-name-sans-extension id-file
)
847 org-export-docbook-extension
))
848 (setq rpl
(format "<link xlink:href=\"%s#%s\">%s</link>"
849 id-file path
(org-export-docbook-format-desc desc
)))))
850 ((member type
'("http" "https"))
851 ;; Standard URL, just check if we need to inline an image
852 (if (and (or (eq t org-export-docbook-inline-images
)
853 (and org-export-docbook-inline-images
(not descp
)))
855 path org-export-docbook-inline-image-extensions
))
856 (setq rpl
(org-export-docbook-format-image
857 (concat type
":" path
)))
858 (setq link
(concat type
":" path
))
859 (setq rpl
(format "<link xlink:href=\"%s\">%s</link>"
860 (org-export-html-format-href link
)
861 (org-export-docbook-format-desc desc
)))
863 ((member type
'("ftp" "mailto" "news"))
865 (setq link
(concat type
":" path
))
866 (setq rpl
(format "<link xlink:href=\"%s\">%s</link>"
867 (org-export-html-format-href link
)
868 (org-export-docbook-format-desc desc
))))
869 ((string= type
"coderef")
870 (setq rpl
(format (org-export-get-coderef-format path
(and descp desc
))
871 (cdr (assoc path org-export-code-refs
)))))
872 ((functionp (setq fnc
(nth 2 (assoc type org-link-protocols
))))
873 ;; The link protocol has a function for format the link
876 (funcall fnc
(org-link-unescape path
) desc1
'html
))))
878 ((string= type
"file")
880 (let* ((filename path
)
881 (abs-p (file-name-absolute-p filename
))
882 thefile file-is-image-p search
)
884 (if (string-match "::\\(.*\\)" filename
)
885 (setq search
(match-string 1 filename
)
886 filename
(replace-match "" t nil filename
)))
888 (if (functionp link-validate
)
889 (funcall link-validate filename current-dir
)
891 (setq file-is-image-p
893 filename org-export-docbook-inline-image-extensions
))
894 (setq thefile
(if abs-p
(expand-file-name filename
) filename
))
895 ;; Carry over the properties (expand-file-name will
896 ;; discard the properties of filename)
897 (add-text-properties 0 (1- (length thefile
))
898 (list 'org-caption caption
902 (when (and org-export-docbook-link-org-files-as-docbook
903 (string-match "\\.org$" thefile
))
904 (setq thefile
(concat (substring thefile
0
906 org-export-docbook-extension
))
908 ;; make sure this is can be used as target search
909 (not (string-match "^[0-9]*$" search
))
910 (not (string-match "^\\*" search
))
911 (not (string-match "^/.*/$" search
)))
912 (setq thefile
(concat thefile
"#"
913 (org-solidify-link-text
914 (org-link-unescape search
)))))
915 (when (string-match "^file:" desc
)
916 (setq desc
(replace-match "" t t desc
))
917 (if (string-match "\\.org$" desc
)
918 (setq desc
(replace-match "" t t desc
))))))
919 (setq rpl
(if (and file-is-image-p
920 (or (eq t org-export-docbook-inline-images
)
921 (and org-export-docbook-inline-images
924 (message "image %s %s" thefile org-docbook-para-open
)
925 (org-export-docbook-format-image thefile
))
926 (format "<link xlink:href=\"%s\">%s</link>"
927 thefile
(org-export-docbook-format-desc desc
))))
928 (if (not valid
) (setq rpl desc
))))
931 ;; Just publish the path, as default
932 (setq rpl
(concat "<" type
":"
933 (save-match-data (org-link-unescape path
))
935 (setq line
(replace-match rpl t t line
)
936 start
(+ start
(length rpl
))))
938 ;; TODO items: can we do something better?!
939 (if (and (string-match org-todo-line-regexp line
)
942 (concat (substring line
0 (match-beginning 2))
943 "[" (match-string 2 line
) "]"
944 (substring line
(match-end 2)))))
946 ;; Does this contain a reference to a footnote?
947 (when org-export-with-footnotes
949 (while (string-match "\\([^* \t].*?\\)\\[\\([0-9]+\\)\\]" line start
)
950 (if (get-text-property (match-beginning 2) 'org-protected line
)
951 (setq start
(match-end 2))
952 (let* ((num (match-string 2 line
))
953 (footnote-def (assoc num footnote-list
)))
954 (if (assoc num footref-seen
)
955 (setq line
(replace-match
956 (format "%s<footnoteref linkend=\"%s%s\"/>"
957 (match-string 1 line
)
958 org-export-docbook-footnote-id-prefix num
)
960 (setq line
(replace-match
961 (format "%s<footnote xml:id=\"%s%s\"><para>%s</para></footnote>"
962 (match-string 1 line
)
963 org-export-docbook-footnote-id-prefix
967 (org-docbook-expand (cdr footnote-def
)))
968 (format "FOOTNOTE DEFINITION NOT FOUND: %s" num
)))
970 (push (cons num
1) footref-seen
))))))
973 ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line
)
974 ;; This is a headline
975 (setq level
(org-tr-level (- (match-end 1) (match-beginning 1)
977 txt
(match-string 2 line
))
978 (if (string-match quote-re0 txt
)
979 (setq txt
(replace-match "" t t txt
)))
980 (org-export-docbook-level-start level txt
)
982 (when (string-match quote-re line
)
983 (org-export-docbook-close-para-maybe)
984 (insert "<programlisting><![CDATA[")
987 ;; Tables: since version 4.3 of DocBook DTD, HTML tables are
988 ;; supported. We can use existing HTML table exporter code
990 ((and org-export-with-tables
991 (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line
))
996 table-orig-buffer nil
))
998 (setq table-buffer
(cons line table-buffer
)
999 table-orig-buffer
(cons origline table-orig-buffer
))
1000 (when (or (not lines
)
1001 (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
1003 (setq table-open nil
1004 table-buffer
(nreverse table-buffer
)
1005 table-orig-buffer
(nreverse table-orig-buffer
))
1006 (org-export-docbook-close-para-maybe)
1007 (insert (org-export-docbook-finalize-table
1008 (org-format-table-html table-buffer table-orig-buffer
1015 ((eq llt t
) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+[.)]\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
1016 ((= llt ?.
) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+\\.\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
1017 ((= llt ?\
)) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+)\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
1018 (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))
1020 (setq ind
(or (get-text-property 0 'original-indentation line
)
1021 (org-get-string-indentation line
))
1022 item-type
(if (match-beginning 4) "o" "u")
1023 starter
(if (match-beginning 2)
1024 (substring (match-string 2 line
) 0 -
1))
1025 line
(substring line
(match-beginning 5))
1028 (if (string-match "\\[@\\(?:start:\\)?\\([0-9]+\\)\\][ \t]?" line
)
1029 (setq item-number
(match-string 1 line
)
1030 line
(replace-match "" t t line
)))
1031 (if (and starter
(string-match "\\(.*?\\) ::[ \t]*" line
))
1033 item-tag
(match-string 1 line
)
1034 line
(substring line
(match-end 0))))
1037 (or (not in-local-list
)
1038 (> ind
(car local-list-indent
))))
1039 ;; Start new (level of) list
1040 (org-export-docbook-close-para-maybe)
1042 ((equal item-type
"u") "<itemizedlist>\n<listitem>\n")
1043 ((and (equal item-type
"o") item-number
)
1044 ;; Check for a specific start number. If it
1045 ;; is specified, we use the ``override''
1046 ;; attribute of element <listitem> to pass the
1047 ;; info to DocBook. We could also use the
1048 ;; ``startingnumber'' attribute of element
1049 ;; <orderedlist>, but the former works on both
1050 ;; DocBook 5.0 and prior versions.
1051 (format "<orderedlist>\n<listitem override=\"%s\">\n" item-number
))
1052 ((equal item-type
"o") "<orderedlist>\n<listitem>\n")
1053 ((equal item-type
"d")
1054 (format "<variablelist>\n<varlistentry><term>%s</term><listitem>\n" item-tag
))))
1055 ;; For DocBook, we need to open a para right after tag
1057 (org-export-docbook-open-para)
1058 (push item-type local-list-type
)
1059 (push ind local-list-indent
)
1060 (setq in-local-list t
))
1061 ;; Continue current list
1063 ;; terminate any previous sublist but first ensure
1064 ;; list is not ill-formed
1065 (let ((min-ind (apply 'min local-list-indent
)))
1066 (when (< ind min-ind
) (setq ind min-ind
)))
1067 (while (< ind
(car local-list-indent
))
1068 (let ((listtype (car local-list-type
)))
1069 (org-export-docbook-close-li listtype
)
1071 ((equal listtype
"o") "</orderedlist>\n")
1072 ((equal listtype
"u") "</itemizedlist>\n")
1073 ((equal listtype
"d") "</variablelist>\n"))))
1074 (pop local-list-type
) (pop local-list-indent
)
1075 (setq in-local-list local-list-indent
))
1077 (let ((listtype (car local-list-type
)))
1078 (org-export-docbook-close-li listtype
)
1080 ((and (equal listtype
"o") item-number
)
1081 (format "<listitem override=\"%s\">" item-number
))
1082 ((equal listtype
"o") "<listitem>")
1083 ((equal listtype
"u") "<listitem>")
1084 ((equal listtype
"d") (format
1085 "<varlistentry><term>%s</term><listitem>"
1088 ;; For DocBook, we need to open a para right after tag
1090 (org-export-docbook-open-para)))
1092 (if (string-match "^[ \t]*\\(\\[[X -]\\]\\)" line
)
1094 (replace-match (concat checkbox-start
1095 (match-string 1 line
)
1099 ;; Empty lines start a new paragraph. If hand-formatted lists
1100 ;; are not fully interpreted, lines starting with "-", "+", "*"
1101 ;; also start a new paragraph.
1102 (if (and (string-match "^ [-+*]-\\|^[ \t]*$" line
)
1104 (org-export-docbook-open-para))
1106 ;; Is this the start of a footnote?
1107 (when org-export-with-footnotes
1108 (when (and (boundp 'footnote-section-tag-regexp
)
1109 (string-match (concat "^" footnote-section-tag-regexp
)
1112 (throw 'nextline nil
))
1113 ;; These footnote lines have been read and saved before,
1114 ;; ignore them at this time.
1115 (when (string-match "^[ \t]*\\[\\([0-9]+\\)\\]" line
)
1116 (org-export-docbook-close-para-maybe)
1117 (throw 'nextline nil
)))
1119 ;; FIXME: It might be a good idea to add an option to
1120 ;; support line break processing instruction <?linebreak?>.
1121 ;; Org-mode supports line break "\\" in HTML exporter, and
1122 ;; some DocBook users may also want to force line breaks
1123 ;; even though DocBook only supports that in
1126 (insert line
"\n")))))
1128 ;; Properly close all local lists and other lists
1130 (insert "]]></programlisting>\n")
1131 (org-export-docbook-open-para))
1133 ;; Close all open sections.
1134 (org-export-docbook-level-start 1 nil
)
1136 (unless (plist-get opt-plist
:buffer-will-be-killed
)
1138 (if (eq major-mode
(default-value 'major-mode
))
1141 ;; Remove empty paragraphs and lists. Replace them with a
1143 (goto-char (point-min))
1144 (while (re-search-forward
1145 "[ \r\n\t]*\\(<para>\\)[ \r\n\t]*</para>[ \r\n\t]*" nil t
)
1146 (when (not (get-text-property (match-beginning 1) 'org-protected
))
1147 (replace-match "\n")
1148 ;; Avoid empty <listitem></listitem> caused by inline tasks.
1149 ;; We should add an empty para to make everything valid.
1150 (when (and (looking-at "</listitem>")
1152 (backward-char (length "<listitem>\n"))
1153 (looking-at "<listitem>")))
1154 (insert "<para></para>"))
1156 ;; Fill empty sections with <para></para>. This is to make sure
1157 ;; that the DocBook document generated is valid and well-formed.
1158 (goto-char (point-min))
1159 (while (re-search-forward
1160 "</title>\\([ \r\n\t]*\\)</section>" nil t
)
1161 (when (not (get-text-property (match-beginning 0) 'org-protected
))
1162 (replace-match "\n<para></para>\n" nil nil nil
1)))
1163 ;; Insert the last closing tag.
1164 (goto-char (point-max))
1166 (insert "</article>"))
1167 (run-hooks 'org-export-docbook-final-hook
)
1168 (or to-buffer
(save-buffer))
1169 (goto-char (point-min))
1170 (or (org-export-push-to-kill-ring "DocBook")
1171 (message "Exporting... done"))
1172 (if (eq to-buffer
'string
)
1173 (prog1 (buffer-substring (point-min) (point-max))
1174 (kill-buffer (current-buffer)))
1175 (current-buffer)))))
1177 (defun org-export-docbook-open-para ()
1178 "Insert <para>, but first close previous paragraph if any."
1179 (org-export-docbook-close-para-maybe)
1181 (setq org-docbook-para-open t
))
1183 (defun org-export-docbook-close-para-maybe ()
1184 "Close DocBook paragraph if there is one open."
1185 (when org-docbook-para-open
1186 (insert "</para>\n")
1187 (setq org-docbook-para-open nil
)))
1189 (defun org-export-docbook-close-li (&optional type
)
1190 "Close list if necessary."
1191 (org-export-docbook-close-para-maybe)
1192 (if (equal type
"d")
1193 (insert "</listitem></varlistentry>\n")
1194 (insert "</listitem>\n")))
1196 (defvar in-local-list
)
1197 (defvar local-list-indent
)
1198 (defvar local-list-type
)
1200 (defun org-export-docbook-level-start (level title
)
1201 "Insert a new level in DocBook export.
1202 When TITLE is nil, just close all open levels."
1203 (org-export-docbook-close-para-maybe)
1204 (let* ((target (and title
(org-get-text-property-any 0 'target title
)))
1208 (if (aref org-levels-open
(1- l
))
1210 (insert "</section>\n")
1211 (aset org-levels-open
(1- l
) nil
)))
1214 ;; If title is nil, this means this function is called to close
1215 ;; all levels, so the rest is done only if title is given.
1217 ;; Format tags: put them into a superscript like format.
1218 (when (string-match (org-re "\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") title
)
1221 (if org-export-with-tags
1225 (match-string 1 title
)
1229 (aset org-levels-open
(1- level
) t
)
1230 (setq section-number
(org-section-number level
))
1231 (insert (format "\n<section xml:id=\"%s%s\">\n<title>%s</title>"
1232 org-export-docbook-section-id-prefix
1233 (replace-regexp-in-string "\\." "_" section-number
)
1235 (org-export-docbook-open-para))))
1237 (defun org-docbook-expand (string)
1238 "Prepare STRING for DocBook export.
1239 Applies all active conversions. If there are links in the
1240 string, don't modify these."
1241 (let* ((re (concat org-bracket-link-regexp
"\\|"
1242 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")))
1244 (while (setq m
(string-match re string
))
1245 (setq s
(substring string
0 m
)
1246 l
(match-string 0 string
)
1247 string
(substring string
(match-end 0)))
1248 (push (org-docbook-do-expand s
) res
)
1250 (push (org-docbook-do-expand string
) res
)
1251 (apply 'concat
(nreverse res
))))
1253 (defun org-docbook-do-expand (s)
1254 "Apply all active conversions to translate special ASCII to DocBook."
1255 (setq s
(org-html-protect s
))
1256 (while (string-match "@<\\([^&]*\\)>" s
)
1257 (setq s
(replace-match "<\\1>" t nil s
)))
1258 (if org-export-with-emphasize
1259 (setq s
(org-export-docbook-convert-emphasize s
)))
1260 (if org-export-with-special-strings
1261 (setq s
(org-export-docbook-convert-special-strings s
)))
1262 (if org-export-with-sub-superscripts
1263 (setq s
(org-export-docbook-convert-sub-super s
)))
1264 (if org-export-with-TeX-macros
1265 (let ((start 0) wd rep
)
1266 (while (setq start
(string-match "\\\\\\([a-zA-Z]+\\)\\({}\\)?"
1268 (if (get-text-property (match-beginning 0) 'org-protected s
)
1269 (setq start
(match-end 0))
1270 (setq wd
(match-string 1 s
))
1271 (if (setq rep
(org-entity-get-representation wd
'html
))
1272 (setq s
(replace-match rep t t s
))
1273 (setq start
(+ start
(length wd
))))))))
1276 (defun org-export-docbook-format-desc (desc)
1277 "Make sure DESC is valid as a description in a link."
1279 (org-docbook-do-expand desc
)))
1281 (defun org-export-docbook-convert-emphasize (string)
1282 "Apply emphasis for DocBook exporting."
1284 (while (string-match org-emph-re string s
)
1286 (substring string
(match-beginning 3) (1+ (match-beginning 3)))
1287 (substring string
(match-beginning 4) (1+ (match-beginning 4)))))
1288 (setq s
(match-beginning 0)
1291 (match-string 1 string
)
1292 (nth 1 (assoc (match-string 3 string
)
1293 org-export-docbook-emphasis-alist
))
1294 (match-string 4 string
)
1295 (nth 2 (assoc (match-string 3 string
)
1296 org-export-docbook-emphasis-alist
))
1297 (match-string 5 string
))
1298 string
(replace-match rpl t t string
)
1299 s
(+ s
(- (length rpl
) 2)))
1303 (defun org-docbook-protect (string)
1304 (org-html-protect string
))
1306 ;; For now, simply return string as it is.
1307 (defun org-export-docbook-convert-special-strings (string)
1308 "Convert special characters in STRING to DocBook."
1311 (defun org-export-docbook-get-footnotes (lines)
1312 "Given a list of LINES, return a list of alist footnotes."
1313 (let ((list nil
) line
)
1314 (while (setq line
(pop lines
))
1315 (if (string-match "^[ \t]*\\[\\([0-9]+\\)\\] \\(.+\\)" line
)
1316 (push (cons (match-string 1 line
) (match-string 2 line
))
1320 (defun org-export-docbook-format-image (src)
1321 "Create image element in DocBook."
1323 (let* ((caption (org-find-text-property-in-string 'org-caption src
))
1324 (attr (or (org-find-text-property-in-string 'org-attributes src
)
1326 (label (org-find-text-property-in-string 'org-label src
))
1327 (default-attr org-export-docbook-default-image-attributes
)
1329 (setq caption
(and caption
(org-html-do-expand caption
)))
1330 (while (setq tmp
(pop default-attr
))
1331 (if (not (string-match (concat (car tmp
) "=") attr
))
1332 (setq attr
(concat attr
" " (car tmp
) "=" (cdr tmp
)))))
1333 (format "<mediaobject%s>
1334 <imageobject>\n<imagedata fileref=\"%s\" %s/>\n</imageobject>
1336 (if label
(concat " xml:id=\"" label
"\"") "")
1339 (concat "<caption>\n<para>"
1341 "</para>\n</caption>\n")
1345 (defun org-export-docbook-preprocess (parameters)
1346 "Extra preprocessing work for DocBook export."
1347 ;; Merge lines starting with "\par" to one line. Such lines are
1348 ;; regarded as the continuation of a long footnote.
1349 (goto-char (point-min))
1350 (while (re-search-forward "\n\\(\\\\par\\>\\)" nil t
)
1351 (if (not (get-text-property (match-beginning 1) 'org-protected
))
1352 (replace-match ""))))
1354 (defun org-export-docbook-finalize-table (table)
1355 "Clean up TABLE and turn it into DocBook format.
1356 This function adds a label to the table if it is available, and
1357 also changes TABLE to informaltable if caption does not exist.
1358 TABLE is a string containing the HTML code generated by
1359 `org-format-table-html' for a table in Org-mode buffer."
1360 (let (table-with-label)
1361 ;; Get the label if it exists, and move it into the <table> element.
1362 (setq table-with-label
1364 "^<table \\(\\(.\\|\n\\)+\\)<a name=\"\\(.+\\)\" id=\".+\"></a>\n\\(\\(.\\|\n\\)+\\)</table>"
1366 (replace-match (concat "<table xml:id=\"" (match-string 3 table
) "\" "
1367 (match-string 1 table
)
1368 (match-string 4 table
)
1372 ;; Change <table> into <informaltable> if caption does not exist.
1374 "^<table \\(\\(.\\|\n\\)+\\)<caption></caption>\n\\(\\(.\\|\n\\)+\\)</table>"
1376 (replace-match (concat "<informaltable "
1377 (match-string 1 table-with-label
)
1378 (match-string 3 table-with-label
)
1380 nil nil table-with-label
)
1383 ;; Note: This function is very similar to
1384 ;; org-export-html-convert-sub-super. They can be merged in the future.
1385 (defun org-export-docbook-convert-sub-super (string)
1386 "Convert sub- and superscripts in STRING for DocBook."
1387 (let (key c
(s 0) (requireb (eq org-export-with-sub-superscripts
'{})))
1388 (while (string-match org-match-substring-regexp string s
)
1390 ((and requireb
(match-end 8)) (setq s
(match-end 2)))
1391 ((get-text-property (match-beginning 2) 'org-protected string
)
1392 (setq s
(match-end 2)))
1394 (setq s
(match-end 1)
1395 key
(if (string= (match-string 2 string
) "_")
1398 c
(or (match-string 8 string
)
1399 (match-string 6 string
)
1400 (match-string 5 string
))
1401 string
(replace-match
1402 (concat (match-string 1 string
)
1403 "<" key
">" c
"</" key
">")
1405 (while (string-match "\\\\\\([_^]\\)" string
)
1406 (setq string
(replace-match (match-string 1 string
) t t string
)))
1409 (defun org-export-docbook-protect-tags (string)
1410 "Change ``<...>'' in string STRING into ``@<...>''.
1411 This is normally needed when STRING contains DocBook elements
1412 that need to be preserved in later phase of DocBook exporting."
1414 (while (string-match "<\\([^>]*\\)>" string start
)
1415 (setq string
(replace-match
1416 "@<\\1>" t nil string
)
1417 start
(match-end 0)))
1420 (defun org-export-docbook-handle-time-stamps (line)
1421 "Format time stamps in string LINE."
1423 (kw-markup (org-export-docbook-protect-tags
1424 org-export-docbook-keywords-markup
))
1425 (ts-markup (org-export-docbook-protect-tags
1426 org-export-docbook-timestamp-markup
)))
1427 (while (string-match org-maybe-keyword-time-regexp line
)
1430 (substring line
0 (match-beginning 0))
1433 (match-string 1 line
)))
1436 (substring (org-translate-time
1437 (match-string 3 line
)) 1 -
1)))
1438 line
(substring line
(match-end 0))))
1439 (concat replaced line
)))
1441 (provide 'org-docbook
)
1443 ;;; org-docbook.el ends here