Merge Org 7.8.11 -- important bug fixes.
[emacs.git] / lisp / org / org-lparse.el
blob9c3cd5b481108fb5ffda9dde63b2a8975c66a027
1 ;;; org-lparse.el --- Line-oriented parser-exporter for Org-mode
3 ;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
5 ;; Author: Jambunathan K <kjambunathan at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; `org-lparse' is the entry point for the generic line-oriented
27 ;; exporter. `org-do-lparse' is the genericized version of the
28 ;; original `org-export-as-html' routine.
30 ;; `org-lparse-native-backends' is a good starting point for
31 ;; exploring the generic exporter.
33 ;; Following new interactive commands are provided by this library.
34 ;; `org-lparse', `org-lparse-and-open', `org-lparse-to-buffer'
35 ;; `org-replace-region-by', `org-lparse-region'.
37 ;; Note that the above routines correspond to the following routines
38 ;; in the html exporter `org-export-as-html',
39 ;; `org-export-as-html-and-open', `org-export-as-html-to-buffer',
40 ;; `org-replace-region-by-html' and `org-export-region-as-html'.
42 ;; The new interactive command `org-lparse-convert' can be used to
43 ;; convert documents between various formats. Use this to command,
44 ;; for example, to convert odt file to doc or pdf format.
46 ;;; Code:
47 (eval-when-compile
48 (require 'cl))
49 (require 'org-exp)
50 (require 'org-list)
51 (require 'format-spec)
53 ;;;###autoload
54 (defun org-lparse-and-open (target-backend native-backend arg
55 &optional file-or-buf)
56 "Export outline to TARGET-BACKEND via NATIVE-BACKEND and open exported file.
57 If there is an active region, export only the region. The prefix
58 ARG specifies how many levels of the outline should become
59 headlines. The default is 3. Lower levels will become bulleted
60 lists."
61 (let (f (file-or-buf (or file-or-buf
62 (org-lparse target-backend native-backend
63 arg 'hidden))))
64 (when file-or-buf
65 (setq f (cond
66 ((bufferp file-or-buf) buffer-file-name)
67 ((file-exists-p file-or-buf) file-or-buf)
68 (t (error "org-lparse-and-open: This shouldn't happen"))))
69 (message "Opening file %s" f)
70 (org-open-file f)
71 (when org-export-kill-product-buffer-when-displayed
72 (kill-buffer (current-buffer))))))
74 ;;;###autoload
75 (defun org-lparse-batch (target-backend &optional native-backend)
76 "Call the function `org-lparse'.
77 This function can be used in batch processing as:
78 emacs --batch
79 --load=$HOME/lib/emacs/org.el
80 --eval \"(setq org-export-headline-levels 2)\"
81 --visit=MyFile --funcall org-lparse-batch"
82 (setq native-backend (or native-backend target-backend))
83 (org-lparse target-backend native-backend
84 org-export-headline-levels 'hidden))
86 ;;;###autoload
87 (defun org-lparse-to-buffer (backend arg)
88 "Call `org-lparse' with output to a temporary buffer.
89 No file is created. The prefix ARG is passed through to
90 `org-lparse'."
91 (let ((tempbuf (format "*Org %s Export*" (upcase backend))))
92 (org-lparse backend backend arg nil nil tempbuf)
93 (when org-export-show-temporary-export-buffer
94 (switch-to-buffer-other-window tempbuf))))
96 ;;;###autoload
97 (defun org-replace-region-by (backend beg end)
98 "Assume the current region has org-mode syntax, and convert it to HTML.
99 This can be used in any buffer. For example, you could write an
100 itemized list in org-mode syntax in an HTML buffer and then use
101 this command to convert it."
102 (let (reg backend-string buf pop-up-frames)
103 (save-window-excursion
104 (if (eq major-mode 'org-mode)
105 (setq backend-string (org-lparse-region backend beg end t 'string))
106 (setq reg (buffer-substring beg end)
107 buf (get-buffer-create "*Org tmp*"))
108 (with-current-buffer buf
109 (erase-buffer)
110 (insert reg)
111 (org-mode)
112 (setq backend-string (org-lparse-region backend (point-min)
113 (point-max) t 'string)))
114 (kill-buffer buf)))
115 (delete-region beg end)
116 (insert backend-string)))
118 ;;;###autoload
119 (defun org-lparse-region (backend beg end &optional body-only buffer)
120 "Convert region from BEG to END in org-mode buffer to HTML.
121 If prefix arg BODY-ONLY is set, omit file header, footer, and table of
122 contents, and only produce the region of converted text, useful for
123 cut-and-paste operations.
124 If BUFFER is a buffer or a string, use/create that buffer as a target
125 of the converted HTML. If BUFFER is the symbol `string', return the
126 produced HTML as a string and leave not buffer behind. For example,
127 a Lisp program could call this function in the following way:
129 (setq html (org-lparse-region \"html\" beg end t 'string))
131 When called interactively, the output buffer is selected, and shown
132 in a window. A non-interactive call will only return the buffer."
133 (let ((transient-mark-mode t) (zmacs-regions t)
134 ext-plist rtn)
135 (setq ext-plist (plist-put ext-plist :ignore-subtree-p t))
136 (goto-char end)
137 (set-mark (point)) ;; to activate the region
138 (goto-char beg)
139 (setq rtn (org-lparse backend backend nil nil ext-plist buffer body-only))
140 (if (fboundp 'deactivate-mark) (deactivate-mark))
141 (if (and (org-called-interactively-p 'any) (bufferp rtn))
142 (switch-to-buffer-other-window rtn)
143 rtn)))
145 (defvar org-lparse-par-open nil)
147 (defun org-lparse-should-inline-p (filename descp)
148 "Return non-nil if link FILENAME should be inlined.
149 The decision to inline the FILENAME link is based on the current
150 settings. DESCP is the boolean of whether there was a link
151 description. See variables `org-export-html-inline-images' and
152 `org-export-html-inline-image-extensions'."
153 (let ((inline-images (org-lparse-get 'INLINE-IMAGES))
154 (inline-image-extensions
155 (org-lparse-get 'INLINE-IMAGE-EXTENSIONS)))
156 (and (or (eq t inline-images) (and inline-images (not descp)))
157 (org-file-image-p filename inline-image-extensions))))
159 (defun org-lparse-format-org-link (line opt-plist)
160 "Return LINE with markup of Org mode links.
161 OPT-PLIST is the export options list."
162 (let ((start 0)
163 (current-dir (if buffer-file-name
164 (file-name-directory buffer-file-name)
165 default-directory))
166 (link-validate (plist-get opt-plist :link-validation-function))
167 type id-file fnc
168 rpl path attr desc descp desc1 desc2 link
169 org-lparse-link-description-is-image)
170 (while (string-match org-bracket-link-analytic-regexp++ line start)
171 (setq org-lparse-link-description-is-image nil)
172 (setq start (match-beginning 0))
173 (setq path (save-match-data (org-link-unescape
174 (match-string 3 line))))
175 (setq type (cond
176 ((match-end 2) (match-string 2 line))
177 ((save-match-data
178 (or (file-name-absolute-p path)
179 (string-match "^\\.\\.?/" path)))
180 "file")
181 (t "internal")))
182 (setq path (org-extract-attributes path))
183 (setq attr (get-text-property 0 'org-attributes path))
184 (setq desc1 (if (match-end 5) (match-string 5 line))
185 desc2 (if (match-end 2) (concat type ":" path) path)
186 descp (and desc1 (not (equal desc1 desc2)))
187 desc (or desc1 desc2))
188 ;; Make an image out of the description if that is so wanted
189 (when (and descp (org-file-image-p
190 desc (org-lparse-get 'INLINE-IMAGE-EXTENSIONS)))
191 (setq org-lparse-link-description-is-image t)
192 (save-match-data
193 (if (string-match "^file:" desc)
194 (setq desc (substring desc (match-end 0)))))
195 (save-match-data
196 (setq desc (org-add-props
197 (org-lparse-format 'INLINE-IMAGE desc)
198 '(org-protected t)))))
199 (cond
200 ((equal type "internal")
201 (let
202 ((frag-0
203 (if (= (string-to-char path) ?#)
204 (substring path 1)
205 path)))
206 (setq rpl
207 (org-lparse-format
208 'ORG-LINK opt-plist "" "" (org-solidify-link-text
209 (save-match-data
210 (org-link-unescape frag-0))
211 nil) desc attr descp))))
212 ((and (equal type "id")
213 (setq id-file (org-id-find-id-file path)))
214 ;; This is an id: link to another file (if it was the same file,
215 ;; it would have become an internal link...)
216 (save-match-data
217 (setq id-file (file-relative-name
218 id-file
219 (file-name-directory org-current-export-file)))
220 (setq rpl
221 (org-lparse-format
222 'ORG-LINK opt-plist type id-file
223 (concat (if (org-uuidgen-p path) "ID-") path)
224 desc attr descp))))
225 ((member type '("http" "https"))
226 ;; standard URL, can inline as image
227 (setq rpl
228 (org-lparse-format
229 'ORG-LINK opt-plist type path nil desc attr descp)))
230 ((member type '("ftp" "mailto" "news"))
231 ;; standard URL, can't inline as image
232 (setq rpl
233 (org-lparse-format
234 'ORG-LINK opt-plist type path nil desc attr descp)))
236 ((string= type "coderef")
237 (setq rpl (org-lparse-format
238 'ORG-LINK opt-plist type "" path desc nil descp)))
240 ((functionp (setq fnc (nth 2 (assoc type org-link-protocols))))
241 ;; The link protocol has a function for format the link
242 (setq rpl (save-match-data
243 (funcall fnc (org-link-unescape path)
244 desc1 (and (boundp 'org-lparse-backend)
245 (case org-lparse-backend
246 (xhtml 'html)
247 (t org-lparse-backend)))))))
248 ((string= type "file")
249 ;; FILE link
250 (save-match-data
251 (let*
252 ((components
254 (string-match "::\\(.*\\)" path)
255 (list
256 (replace-match "" t nil path)
257 (match-string 1 path))
258 (list path nil)))
260 ;;The proper path, without a fragment
261 (path-1
262 (first components))
264 ;;The raw fragment
265 (fragment-0
266 (second components))
268 ;;Check the fragment. If it can't be used as
269 ;;target fragment we'll pass nil instead.
270 (fragment-1
272 (and fragment-0
273 (not (string-match "^[0-9]*$" fragment-0))
274 (not (string-match "^\\*" fragment-0))
275 (not (string-match "^/.*/$" fragment-0)))
276 (org-solidify-link-text
277 (org-link-unescape fragment-0))
278 nil))
279 (desc-2
280 ;;Description minus "file:" and ".org"
281 (if (string-match "^file:" desc)
282 (let
283 ((desc-1 (replace-match "" t t desc)))
284 (if (string-match "\\.org$" desc-1)
285 (replace-match "" t t desc-1)
286 desc-1))
287 desc)))
289 (setq rpl
291 (and
292 (functionp link-validate)
293 (not (funcall link-validate path-1 current-dir)))
294 desc
295 (org-lparse-format
296 'ORG-LINK opt-plist "file" path-1 fragment-1
297 desc-2 attr descp))))))
300 ;; just publish the path, as default
301 (setq rpl (concat "<i>&lt;" type ":"
302 (save-match-data (org-link-unescape path))
303 "&gt;</i>"))))
304 (setq line (replace-match rpl t t line)
305 start (+ start (length rpl))))
306 line))
308 (defvar org-lparse-par-open-stashed) ; bound during `org-do-lparse'
309 (defun org-lparse-stash-save-paragraph-state ()
310 (assert (zerop org-lparse-par-open-stashed))
311 (setq org-lparse-par-open-stashed org-lparse-par-open)
312 (setq org-lparse-par-open nil))
314 (defun org-lparse-stash-pop-paragraph-state ()
315 (setq org-lparse-par-open org-lparse-par-open-stashed)
316 (setq org-lparse-par-open-stashed 0))
318 (defmacro with-org-lparse-preserve-paragraph-state (&rest body)
319 `(let ((org-lparse-do-open-par org-lparse-par-open))
320 (org-lparse-end-paragraph)
321 ,@body
322 (when org-lparse-do-open-par
323 (org-lparse-begin-paragraph))))
324 (def-edebug-spec with-org-lparse-preserve-paragraph-state (body))
326 (defvar org-lparse-native-backends nil
327 "List of native backends registered with `org-lparse'.
328 A backend can use `org-lparse-register-backend' to add itself to
329 this list.
331 All native backends must implement a get routine and a mandatory
332 set of callback routines.
334 The get routine must be named as org-<backend>-get where backend
335 is the name of the backend. The exporter uses `org-lparse-get'
336 and retrieves the backend-specific callback by querying for
337 ENTITY-CONTROL and ENTITY-FORMAT variables.
339 For the sake of illustration, the html backend implements
340 `org-xhtml-get'. It returns
341 `org-xhtml-entity-control-callbacks-alist' and
342 `org-xhtml-entity-format-callbacks-alist' as the values of
343 ENTITY-CONTROL and ENTITY-FORMAT settings.")
345 (defun org-lparse-register-backend (backend)
346 "Make BACKEND known to `org-lparse' library.
347 Add BACKEND to `org-lparse-native-backends'."
348 (when backend
349 (setq backend (cond
350 ((symbolp backend) (symbol-name backend))
351 ((stringp backend) backend)
352 (t (error "Error while registering backend: %S" backend))))
353 (add-to-list 'org-lparse-native-backends backend)))
355 (defun org-lparse-unregister-backend (backend)
356 (setq org-lparse-native-backends
357 (remove (cond
358 ((symbolp backend) (symbol-name backend))
359 ((stringp backend) backend))
360 org-lparse-native-backends))
361 (message "Unregistered backend %S" backend))
363 (defun org-lparse-do-reachable-formats (in-fmt)
364 "Return verbose info about formats to which IN-FMT can be converted.
365 Return a list where each element is of the
366 form (CONVERTER-PROCESS . OUTPUT-FMT-ALIST). See
367 `org-export-odt-convert-processes' for CONVERTER-PROCESS and see
368 `org-export-odt-convert-capabilities' for OUTPUT-FMT-ALIST."
369 (let (reachable-formats)
370 (dolist (backend org-lparse-native-backends reachable-formats)
371 (let* ((converter (org-lparse-backend-get
372 backend 'CONVERT-METHOD))
373 (capabilities (org-lparse-backend-get
374 backend 'CONVERT-CAPABILITIES)))
375 (when converter
376 (dolist (c capabilities)
377 (when (member in-fmt (nth 1 c))
378 (push (cons converter (nth 2 c)) reachable-formats))))))))
380 (defun org-lparse-reachable-formats (in-fmt)
381 "Return list of formats to which IN-FMT can be converted.
382 The list of the form (OUTPUT-FMT-1 OUTPUT-FMT-2 ...)."
383 (let (l)
384 (mapc (lambda (e) (add-to-list 'l e))
385 (apply 'append (mapcar
386 (lambda (e) (mapcar 'car (cdr e)))
387 (org-lparse-do-reachable-formats in-fmt))))
390 (defun org-lparse-reachable-p (in-fmt out-fmt)
391 "Return non-nil if IN-FMT can be converted to OUT-FMT."
392 (catch 'done
393 (let ((reachable-formats (org-lparse-do-reachable-formats in-fmt)))
394 (dolist (e reachable-formats)
395 (let ((out-fmt-spec (assoc out-fmt (cdr e))))
396 (when out-fmt-spec
397 (throw 'done (cons (car e) out-fmt-spec))))))))
399 (defun org-lparse-backend-is-native-p (backend)
400 (member backend org-lparse-native-backends))
402 (defun org-lparse (target-backend native-backend arg
403 &optional hidden ext-plist
404 to-buffer body-only pub-dir)
405 "Export the outline to various formats.
406 If there is an active region, export only the region. The
407 outline is first exported to NATIVE-BACKEND and optionally
408 converted to TARGET-BACKEND. See `org-lparse-native-backends'
409 for list of known native backends. Each native backend can
410 specify a converter and list of target backends it exports to
411 using the CONVERT-PROCESS and OTHER-BACKENDS settings of it's get
412 method. See `org-xhtml-get' for an illustrative example.
414 ARG is a prefix argument that specifies how many levels of
415 outline should become headlines. The default is 3. Lower levels
416 will become bulleted lists.
418 HIDDEN is obsolete and does nothing.
420 EXT-PLIST is a property list that controls various aspects of
421 export. The settings here override org-mode's default settings
422 and but are inferior to file-local settings.
424 TO-BUFFER dumps the exported lines to a buffer or a string
425 instead of a file. If TO-BUFFER is the symbol `string' return the
426 exported lines as a string. If TO-BUFFER is non-nil, create a
427 buffer with that name and export to that buffer.
429 BODY-ONLY controls the presence of header and footer lines in
430 exported text. If BODY-ONLY is non-nil, don't produce the file
431 header and footer, simply return the content of <body>...</body>,
432 without even the body tags themselves.
434 PUB-DIR specifies the publishing directory."
435 (let* ((org-lparse-backend (intern native-backend))
436 (org-lparse-other-backend (and target-backend
437 (intern target-backend))))
438 (unless (org-lparse-backend-is-native-p native-backend)
439 (error "Don't know how to export natively to backend %s" native-backend))
441 (unless (or (equal native-backend target-backend)
442 (org-lparse-reachable-p native-backend target-backend))
443 (error "Don't know how to export to backend %s %s" target-backend
444 (format "via %s" native-backend)))
445 (run-hooks 'org-export-first-hook)
446 (org-do-lparse arg hidden ext-plist to-buffer body-only pub-dir)))
448 (defcustom org-lparse-use-flashy-warning nil
449 "Control flashing of messages logged with `org-lparse-warn'.
450 When non-nil, messages are fontified with warning face and the
451 exporter lingers for a while to catch user's attention."
452 :type 'boolean
453 :group 'org-lparse)
455 (defun org-lparse-convert-read-params ()
456 "Return IN-FILE and OUT-FMT params for `org-lparse-do-convert'.
457 This is a helper routine for interactive use."
458 (let* ((input (if (featurep 'ido) 'ido-completing-read 'completing-read))
459 (in-file (read-file-name "File to be converted: "
460 nil buffer-file-name t))
461 (in-fmt (file-name-extension in-file))
462 (out-fmt-choices (org-lparse-reachable-formats in-fmt))
463 (out-fmt
464 (or (and out-fmt-choices
465 (funcall input "Output format: "
466 out-fmt-choices nil nil nil))
467 (error
468 "No known converter or no known output formats for %s files"
469 in-fmt))))
470 (list in-file out-fmt)))
472 (eval-when-compile
473 (require 'browse-url))
475 (defun org-lparse-do-convert (in-file out-fmt &optional prefix-arg)
476 "Workhorse routine for `org-export-odt-convert'."
477 (require 'browse-url)
478 (let* ((in-file (expand-file-name (or in-file buffer-file-name)))
479 (dummy (or (file-readable-p in-file)
480 (error "Cannot read %s" in-file)))
481 (in-fmt (file-name-extension in-file))
482 (out-fmt (or out-fmt (error "Output format unspecified")))
483 (how (or (org-lparse-reachable-p in-fmt out-fmt)
484 (error "Cannot convert from %s format to %s format?"
485 in-fmt out-fmt)))
486 (convert-process (car how))
487 (out-file (concat (file-name-sans-extension in-file) "."
488 (nth 1 (or (cdr how) out-fmt))))
489 (extra-options (or (nth 2 (cdr how)) ""))
490 (out-dir (file-name-directory in-file))
491 (cmd (format-spec convert-process
492 `((?i . ,(shell-quote-argument in-file))
493 (?I . ,(browse-url-file-url in-file))
494 (?f . ,out-fmt)
495 (?o . ,out-file)
496 (?O . ,(browse-url-file-url out-file))
497 (?d . , (shell-quote-argument out-dir))
498 (?D . ,(browse-url-file-url out-dir))
499 (?x . ,extra-options)))))
500 (when (file-exists-p out-file)
501 (delete-file out-file))
503 (message "Executing %s" cmd)
504 (let ((cmd-output (shell-command-to-string cmd)))
505 (message "%s" cmd-output))
507 (cond
508 ((file-exists-p out-file)
509 (message "Exported to %s" out-file)
510 (when prefix-arg
511 (message "Opening %s..." out-file)
512 (org-open-file out-file))
513 out-file)
515 (message "Export to %s failed" out-file)
516 nil))))
518 (defvar org-lparse-insert-tag-with-newlines 'both)
520 ;; Following variables are let-bound during `org-lparse'
521 (defvar org-lparse-dyn-first-heading-pos)
522 (defvar org-lparse-toc)
523 (defvar org-lparse-entity-control-callbacks-alist)
524 (defvar org-lparse-entity-format-callbacks-alist)
525 (defvar org-lparse-backend nil
526 "The native backend to which the document is currently exported.
527 This variable is let bound during `org-lparse'. Valid values are
528 one of the symbols corresponding to `org-lparse-native-backends'.
530 Compare this variable with `org-export-current-backend' which is
531 bound only during `org-export-preprocess-string' stage of the
532 export process.
534 See also `org-lparse-other-backend'.")
536 (defvar org-lparse-other-backend nil
537 "The target backend to which the document is currently exported.
538 This variable is let bound during `org-lparse'. This variable is
539 set to either `org-lparse-backend' or one of the symbols
540 corresponding to OTHER-BACKENDS specification of the
541 org-lparse-backend.
543 For example, if a document is exported to \"odt\" then both
544 org-lparse-backend and org-lparse-other-backend are bound to
545 'odt. On the other hand, if a document is exported to \"odt\"
546 and then converted to \"doc\" then org-lparse-backend is set to
547 'odt and org-lparse-other-backend is set to 'doc.")
549 (defvar org-lparse-body-only nil
550 "Bind this to BODY-ONLY arg of `org-lparse'.")
552 (defvar org-lparse-to-buffer nil
553 "Bind this to TO-BUFFER arg of `org-lparse'.")
555 (defun org-lparse-get-block-params (params)
556 (save-match-data
557 (when params
558 (setq params (org-trim params))
559 (unless (string-match "\\`(.*)\\'" params)
560 (setq params (format "(%s)" params)))
561 (ignore-errors (read params)))))
563 (defvar org-heading-keyword-regexp-format) ; defined in org.el
564 (defvar org-lparse-special-blocks '("list-table" "annotation"))
565 (defun org-do-lparse (arg &optional hidden ext-plist
566 to-buffer body-only pub-dir)
567 "Export the outline to various formats.
568 See `org-lparse' for more information. This function is a
569 html-agnostic version of the `org-export-as-html' function in 7.5
570 version."
571 ;; Make sure we have a file name when we need it.
572 (when (and (not (or to-buffer body-only))
573 (not buffer-file-name))
574 (if (buffer-base-buffer)
575 (org-set-local 'buffer-file-name
576 (with-current-buffer (buffer-base-buffer)
577 buffer-file-name))
578 (error "Need a file name to be able to export")))
580 (org-lparse-warn
581 (format "Exporting to %s using org-lparse..."
582 (upcase (symbol-name
583 (or org-lparse-backend org-lparse-other-backend)))))
585 (setq-default org-todo-line-regexp org-todo-line-regexp)
586 (setq-default org-deadline-line-regexp org-deadline-line-regexp)
587 (setq-default org-done-keywords org-done-keywords)
588 (setq-default org-maybe-keyword-time-regexp org-maybe-keyword-time-regexp)
589 (let* (hfy-user-sheet-assoc ; let `htmlfontify' know that
590 ; we are interested in
591 ; collecting styles
592 org-lparse-encode-pending
593 org-lparse-par-open
594 (org-lparse-par-open-stashed 0)
596 ;; list related vars
597 (org-lparse-list-stack '())
599 ;; list-table related vars
600 org-lparse-list-table-p
601 org-lparse-list-table:table-cell-open
602 org-lparse-list-table:table-row
603 org-lparse-list-table:lines
605 org-lparse-outline-text-open
606 (org-lparse-latex-fragment-fallback ; currently used only by
607 ; odt exporter
608 (or (ignore-errors (org-lparse-get 'LATEX-FRAGMENT-FALLBACK))
609 (if (and (org-check-external-command "latex" "" t)
610 (org-check-external-command "dvipng" "" t))
611 'dvipng
612 'verbatim)))
613 (org-lparse-insert-tag-with-newlines 'both)
614 (org-lparse-to-buffer to-buffer)
615 (org-lparse-body-only body-only)
616 (org-lparse-entity-control-callbacks-alist
617 (org-lparse-get 'ENTITY-CONTROL))
618 (org-lparse-entity-format-callbacks-alist
619 (org-lparse-get 'ENTITY-FORMAT))
620 (opt-plist
621 (org-export-process-option-filters
622 (org-combine-plists (org-default-export-plist)
623 ext-plist
624 (org-infile-export-plist))))
625 (body-only (or body-only (plist-get opt-plist :body-only)))
626 valid org-lparse-dyn-first-heading-pos
627 (odd org-odd-levels-only)
628 (region-p (org-region-active-p))
629 (rbeg (and region-p (region-beginning)))
630 (rend (and region-p (region-end)))
631 (subtree-p
632 (if (plist-get opt-plist :ignore-subtree-p)
634 (when region-p
635 (save-excursion
636 (goto-char rbeg)
637 (and (org-at-heading-p)
638 (>= (org-end-of-subtree t t) rend))))))
639 (level-offset (if subtree-p
640 (save-excursion
641 (goto-char rbeg)
642 (+ (funcall outline-level)
643 (if org-odd-levels-only 1 0)))
645 (opt-plist (setq org-export-opt-plist
646 (if subtree-p
647 (org-export-add-subtree-options opt-plist rbeg)
648 opt-plist)))
649 ;; The following two are dynamically scoped into other
650 ;; routines below.
651 (org-current-export-dir
652 (or pub-dir (org-lparse-get 'EXPORT-DIR opt-plist)))
653 (org-current-export-file buffer-file-name)
654 (level 0) (line "") (origline "") txt todo
655 (umax nil)
656 (umax-toc nil)
657 (filename (if to-buffer nil
658 (expand-file-name
659 (concat
660 (file-name-sans-extension
661 (or (and subtree-p
662 (org-entry-get (region-beginning)
663 "EXPORT_FILE_NAME" t))
664 (file-name-nondirectory buffer-file-name)))
665 "." (org-lparse-get 'FILE-NAME-EXTENSION opt-plist))
666 (file-name-as-directory
667 (or pub-dir (org-lparse-get 'EXPORT-DIR opt-plist))))))
668 (current-dir (if buffer-file-name
669 (file-name-directory buffer-file-name)
670 default-directory))
671 (auto-insert nil) ; Avoid any auto-insert stuff for the new file
672 (buffer (if to-buffer
673 (cond
674 ((eq to-buffer 'string)
675 (get-buffer-create (org-lparse-get 'EXPORT-BUFFER-NAME)))
676 (t (get-buffer-create to-buffer)))
677 (find-file-noselect
678 (or (let ((f (org-lparse-get 'INIT-METHOD)))
679 (and f (functionp f) (funcall f filename)))
680 filename))))
681 (org-levels-open (make-vector org-level-max nil))
682 (dummy (mapc
683 (lambda(p)
684 (let* ((val (plist-get opt-plist p))
685 (val (org-xml-encode-org-text-skip-links val)))
686 (setq opt-plist (plist-put opt-plist p val))))
687 '(:date :author :keywords :description)))
688 (date (plist-get opt-plist :date))
689 (date (cond
690 ((and date (string-match "%" date))
691 (format-time-string date))
692 (date date)
693 (t (format-time-string "%Y-%m-%d %T %Z"))))
694 (dummy (setq opt-plist (plist-put opt-plist :effective-date date)))
695 (title (org-xml-encode-org-text-skip-links
696 (or (and subtree-p (org-export-get-title-from-subtree))
697 (plist-get opt-plist :title)
698 (and (not body-only)
699 (not
700 (plist-get opt-plist :skip-before-1st-heading))
701 (org-export-grab-title-from-buffer))
702 (and buffer-file-name
703 (file-name-sans-extension
704 (file-name-nondirectory buffer-file-name)))
705 "UNTITLED")))
706 (dummy (setq opt-plist (plist-put opt-plist :title title)))
707 (html-table-tag (plist-get opt-plist :html-table-tag))
708 (quote-re0 (concat "^ *" org-quote-string "\\( +\\|[ \t]*$\\)"))
709 (quote-re (format org-heading-keyword-regexp-format
710 org-quote-string))
711 (org-lparse-dyn-current-environment nil)
712 ;; Get the language-dependent settings
713 (lang-words (or (assoc (plist-get opt-plist :language)
714 org-export-language-setup)
715 (assoc "en" org-export-language-setup)))
716 (dummy (setq opt-plist (plist-put opt-plist :lang-words lang-words)))
717 (head-count 0) cnt
718 (start 0)
719 (coding-system-for-write
720 (or (ignore-errors (org-lparse-get 'CODING-SYSTEM-FOR-WRITE))
721 (and (boundp 'buffer-file-coding-system)
722 buffer-file-coding-system)))
723 (save-buffer-coding-system
724 (or (ignore-errors (org-lparse-get 'CODING-SYSTEM-FOR-SAVE))
725 (and (boundp 'buffer-file-coding-system)
726 buffer-file-coding-system)))
727 (region
728 (buffer-substring
729 (if region-p (region-beginning) (point-min))
730 (if region-p (region-end) (point-max))))
731 (org-export-have-math nil)
732 (org-export-footnotes-seen nil)
733 (org-export-footnotes-data (org-footnote-all-labels 'with-defs))
734 (org-footnote-insert-pos-for-preprocessor 'point-min)
735 (org-lparse-opt-plist opt-plist)
736 (lines
737 (org-split-string
738 (org-export-preprocess-string
739 region
740 :emph-multiline t
741 :for-backend (if (equal org-lparse-backend 'xhtml) ; hack
742 'html
743 org-lparse-backend)
744 :skip-before-1st-heading
745 (plist-get opt-plist :skip-before-1st-heading)
746 :drawers (plist-get opt-plist :drawers)
747 :todo-keywords (plist-get opt-plist :todo-keywords)
748 :tasks (plist-get opt-plist :tasks)
749 :tags (plist-get opt-plist :tags)
750 :priority (plist-get opt-plist :priority)
751 :footnotes (plist-get opt-plist :footnotes)
752 :timestamps (plist-get opt-plist :timestamps)
753 :archived-trees
754 (plist-get opt-plist :archived-trees)
755 :select-tags (plist-get opt-plist :select-tags)
756 :exclude-tags (plist-get opt-plist :exclude-tags)
757 :add-text
758 (plist-get opt-plist :text)
759 :LaTeX-fragments
760 (plist-get opt-plist :LaTeX-fragments))
761 "[\r\n]"))
762 table-open
763 table-buffer table-orig-buffer
765 rpl path attr desc descp desc1 desc2 link
766 snumber fnc
767 footnotes footref-seen
768 org-lparse-output-buffer
769 org-lparse-footnote-definitions
770 org-lparse-footnote-number
771 ;; collection
772 org-lparse-collect-buffer
773 (org-lparse-collect-count 0) ; things will get haywire if
774 ; collections are chained. Use
775 ; this variable to assert this
776 ; pre-requisite
777 org-lparse-toc
778 href
781 (let ((inhibit-read-only t))
782 (org-unmodified
783 (remove-text-properties (point-min) (point-max)
784 '(:org-license-to-kill t))))
786 (message "Exporting...")
787 (org-init-section-numbers)
789 ;; Switch to the output buffer
790 (setq org-lparse-output-buffer buffer)
791 (set-buffer org-lparse-output-buffer)
792 (let ((inhibit-read-only t)) (erase-buffer))
793 (fundamental-mode)
794 (org-install-letbind)
796 (and (fboundp 'set-buffer-file-coding-system)
797 (set-buffer-file-coding-system coding-system-for-write))
799 (let ((case-fold-search nil)
800 (org-odd-levels-only odd))
801 ;; create local variables for all options, to make sure all called
802 ;; functions get the correct information
803 (mapc (lambda (x)
804 (set (make-local-variable (nth 2 x))
805 (plist-get opt-plist (car x))))
806 org-export-plist-vars)
807 (setq umax (if arg (prefix-numeric-value arg)
808 org-export-headline-levels))
809 (setq umax-toc (if (integerp org-export-with-toc)
810 (min org-export-with-toc umax)
811 umax))
812 (setq org-lparse-opt-plist
813 (plist-put org-lparse-opt-plist :headline-levels umax))
815 (when (and org-export-with-toc (not body-only))
816 (setq lines (org-lparse-prepare-toc
817 lines level-offset opt-plist umax-toc)))
819 (unless body-only
820 (org-lparse-begin 'DOCUMENT-CONTENT opt-plist)
821 (org-lparse-begin 'DOCUMENT-BODY opt-plist))
823 (setq head-count 0)
824 (org-init-section-numbers)
826 (org-lparse-begin-paragraph)
828 (while (setq line (pop lines) origline line)
829 (catch 'nextline
830 (when (and (org-lparse-current-environment-p 'quote)
831 (string-match org-outline-regexp-bol line))
832 (org-lparse-end-environment 'quote))
834 (when (org-lparse-current-environment-p 'quote)
835 (org-lparse-insert 'LINE line)
836 (throw 'nextline nil))
838 ;; Fixed-width, verbatim lines (examples)
839 (when (and org-export-with-fixed-width
840 (string-match "^[ \t]*:\\(\\([ \t]\\|$\\)\\(.*\\)\\)" line))
841 (when (not (org-lparse-current-environment-p 'fixedwidth))
842 (org-lparse-begin-environment 'fixedwidth))
843 (org-lparse-insert 'LINE (match-string 3 line))
844 (when (or (not lines)
845 (not (string-match "^[ \t]*:\\(\\([ \t]\\|$\\)\\(.*\\)\\)"
846 (car lines))))
847 (org-lparse-end-environment 'fixedwidth))
848 (throw 'nextline nil))
850 ;; Native Text
851 (when (and (get-text-property 0 'org-native-text line)
852 ;; Make sure it is the entire line that is protected
853 (not (< (or (next-single-property-change
854 0 'org-native-text line) 10000)
855 (length line))))
856 (let ((ind (get-text-property 0 'original-indentation line)))
857 (org-lparse-begin-environment 'native)
858 (org-lparse-insert 'LINE line)
859 (while (and lines
860 (or (= (length (car lines)) 0)
861 (not ind)
862 (equal ind (get-text-property
863 0 'original-indentation (car lines))))
864 (or (= (length (car lines)) 0)
865 (get-text-property 0 'org-native-text (car lines))))
866 (org-lparse-insert 'LINE (pop lines)))
867 (org-lparse-end-environment 'native))
868 (throw 'nextline nil))
870 ;; Protected HTML
871 (when (and (get-text-property 0 'org-protected line)
872 ;; Make sure it is the entire line that is protected
873 (not (< (or (next-single-property-change
874 0 'org-protected line) 10000)
875 (length line))))
876 (let ((ind (get-text-property 0 'original-indentation line)))
877 (org-lparse-insert 'LINE line)
878 (while (and lines
879 (or (= (length (car lines)) 0)
880 (not ind)
881 (equal ind (get-text-property
882 0 'original-indentation (car lines))))
883 (or (= (length (car lines)) 0)
884 (get-text-property 0 'org-protected (car lines))))
885 (org-lparse-insert 'LINE (pop lines))))
886 (throw 'nextline nil))
888 ;; Blockquotes, verse, and center
889 (when (string-match
890 "^ORG-\\(.+\\)-\\(START\\|END\\)\\([ \t]+.*\\)?$" line)
891 (let* ((style (intern (downcase (match-string 1 line))))
892 (env-options-plist (org-lparse-get-block-params
893 (match-string 3 line)))
894 (f (cdr (assoc (match-string 2 line)
895 '(("START" . org-lparse-begin-environment)
896 ("END" . org-lparse-end-environment))))))
897 (when (memq style
898 (append
899 '(blockquote verse center)
900 (mapcar 'intern org-lparse-special-blocks)))
901 (funcall f style env-options-plist)
902 (throw 'nextline nil))))
904 (run-hooks 'org-export-html-after-blockquotes-hook)
905 (when (org-lparse-current-environment-p 'verse)
906 (let ((i (org-get-string-indentation line)))
907 (if (> i 0)
908 (setq line (concat
909 (let ((org-lparse-encode-pending t))
910 (org-lparse-format 'SPACES (* 2 i)))
911 " " (org-trim line))))
912 (unless (string-match "\\\\\\\\[ \t]*$" line)
913 (setq line (concat line "\\\\")))))
915 ;; make targets to anchors
916 (setq start 0)
917 (while (string-match
918 "<<<?\\([^<>]*\\)>>>?\\((INVISIBLE)\\)?[ \t]*\n?" line start)
919 (cond
920 ((get-text-property (match-beginning 1) 'org-protected line)
921 (setq start (match-end 1)))
922 ((match-end 2)
923 (setq line (replace-match
924 (let ((org-lparse-encode-pending t))
925 (org-lparse-format
926 'ANCHOR "" (org-solidify-link-text
927 (match-string 1 line))))
928 t t line)))
929 ((and org-export-with-toc (equal (string-to-char line) ?*))
930 ;; FIXME: NOT DEPENDENT on TOC?????????????????????
931 (setq line (replace-match
932 (let ((org-lparse-encode-pending t))
933 (org-lparse-format
934 'FONTIFY (match-string 1 line) "target"))
935 ;; (concat "@<i>" (match-string 1 line) "@</i> ")
936 t t line)))
938 (setq line (replace-match
939 (concat
940 (let ((org-lparse-encode-pending t))
941 (org-lparse-format
942 'ANCHOR (match-string 1 line)
943 (org-solidify-link-text (match-string 1 line))
944 "target")) " ")
945 t t line)))))
947 (let ((org-lparse-encode-pending t))
948 (setq line (org-lparse-handle-time-stamps line)))
950 ;; replace "&" by "&amp;", "<" and ">" by "&lt;" and "&gt;"
951 ;; handle @<..> HTML tags (replace "@&gt;..&lt;" by "<..>")
952 ;; Also handle sub_superscripts and checkboxes
953 (or (string-match org-table-hline-regexp line)
954 (string-match "^[ \t]*\\([+]-\\||[ ]\\)[-+ |]*[+|][ \t]*$" line)
955 (setq line (org-xml-encode-org-text-skip-links line)))
957 (setq line (org-lparse-format-org-link line opt-plist))
959 ;; TODO items
960 (if (and org-todo-line-regexp
961 (string-match org-todo-line-regexp line)
962 (match-beginning 2))
963 (setq line (concat
964 (substring line 0 (match-beginning 2))
965 (org-lparse-format 'TODO (match-string 2 line))
966 (substring line (match-end 2)))))
968 ;; Does this contain a reference to a footnote?
969 (when org-export-with-footnotes
970 (setq start 0)
971 (while (string-match "\\([^* \t].*?\\)[ \t]*\\[\\([0-9]+\\)\\]" line start)
972 ;; Discard protected matches not clearly identified as
973 ;; footnote markers.
974 (if (or (get-text-property (match-beginning 2) 'org-protected line)
975 (not (get-text-property (match-beginning 2) 'org-footnote line)))
976 (setq start (match-end 2))
977 (let ((n (match-string 2 line)) refcnt a)
978 (if (setq a (assoc n footref-seen))
979 (progn
980 (setcdr a (1+ (cdr a)))
981 (setq refcnt (cdr a)))
982 (setq refcnt 1)
983 (push (cons n 1) footref-seen))
984 (setq line
985 (replace-match
986 (concat
987 (or (match-string 1 line) "")
988 (org-lparse-format
989 'FOOTNOTE-REFERENCE
990 n (cdr (assoc n org-lparse-footnote-definitions))
991 refcnt)
992 ;; If another footnote is following the
993 ;; current one, add a separator.
994 (if (save-match-data
995 (string-match "\\`\\[[0-9]+\\]"
996 (substring line (match-end 0))))
997 (ignore-errors
998 (org-lparse-get 'FOOTNOTE-SEPARATOR))
999 ""))
1000 t t line))))))
1002 (cond
1003 ((string-match "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$" line)
1004 ;; This is a headline
1005 (setq level (org-tr-level (- (match-end 1) (match-beginning 1)
1006 level-offset))
1007 txt (match-string 2 line))
1008 (if (string-match quote-re0 txt)
1009 (setq txt (replace-match "" t t txt)))
1010 (if (<= level (max umax umax-toc))
1011 (setq head-count (+ head-count 1)))
1012 (unless org-lparse-dyn-first-heading-pos
1013 (setq org-lparse-dyn-first-heading-pos (point)))
1014 (org-lparse-begin-level level txt umax head-count)
1016 ;; QUOTES
1017 (when (string-match quote-re line)
1018 (org-lparse-begin-environment 'quote)))
1020 ((and org-export-with-tables
1021 (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
1022 (when (not table-open)
1023 ;; New table starts
1024 (setq table-open t table-buffer nil table-orig-buffer nil))
1026 ;; Accumulate lines
1027 (setq table-buffer (cons line table-buffer)
1028 table-orig-buffer (cons origline table-orig-buffer))
1029 (when (or (not lines)
1030 (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
1031 (car lines))))
1032 (setq table-open nil
1033 table-buffer (nreverse table-buffer)
1034 table-orig-buffer (nreverse table-orig-buffer))
1035 (org-lparse-end-paragraph)
1036 (when org-lparse-list-table-p
1037 (error "Regular tables are not allowed in a list-table block"))
1038 (org-lparse-insert 'TABLE table-buffer table-orig-buffer)))
1040 ;; Normal lines
1042 ;; This line either is list item or end a list.
1043 (when (get-text-property 0 'list-item line)
1044 (setq line (org-lparse-export-list-line
1045 line
1046 (get-text-property 0 'list-item line)
1047 (get-text-property 0 'list-struct line)
1048 (get-text-property 0 'list-prevs line))))
1050 ;; Horizontal line
1051 (when (string-match "^[ \t]*-\\{5,\\}[ \t]*$" line)
1052 (with-org-lparse-preserve-paragraph-state
1053 (org-lparse-insert 'HORIZONTAL-LINE))
1054 (throw 'nextline nil))
1056 ;; Empty lines start a new paragraph. If hand-formatted lists
1057 ;; are not fully interpreted, lines starting with "-", "+", "*"
1058 ;; also start a new paragraph.
1059 (when (string-match "^ [-+*]-\\|^[ \t]*$" line)
1060 (when org-lparse-footnote-number
1061 (org-lparse-end-footnote-definition org-lparse-footnote-number)
1062 (setq org-lparse-footnote-number nil))
1063 (org-lparse-begin-paragraph))
1065 ;; Is this the start of a footnote?
1066 (when org-export-with-footnotes
1067 (when (and (boundp 'footnote-section-tag-regexp)
1068 (string-match (concat "^" footnote-section-tag-regexp)
1069 line))
1070 ;; ignore this line
1071 (throw 'nextline nil))
1072 (when (string-match "^[ \t]*\\[\\([0-9]+\\)\\]" line)
1073 (org-lparse-end-paragraph)
1074 (setq org-lparse-footnote-number (match-string 1 line))
1075 (setq line (replace-match "" t t line))
1076 (org-lparse-begin-footnote-definition org-lparse-footnote-number)))
1077 ;; Check if the line break needs to be conserved
1078 (cond
1079 ((string-match "\\\\\\\\[ \t]*$" line)
1080 (setq line (replace-match
1081 (org-lparse-format 'LINE-BREAK)
1082 t t line)))
1083 (org-export-preserve-breaks
1084 (setq line (concat line (org-lparse-format 'LINE-BREAK)))))
1086 ;; Check if a paragraph should be started
1087 (let ((start 0))
1088 (while (and org-lparse-par-open
1089 (string-match "\\\\par\\>" line start))
1090 (error "FIXME")
1091 ;; Leave a space in the </p> so that the footnote matcher
1092 ;; does not see this.
1093 (if (not (get-text-property (match-beginning 0)
1094 'org-protected line))
1095 (setq line (replace-match "</p ><p >" t t line)))
1096 (setq start (match-end 0))))
1098 (org-lparse-insert 'LINE line)))))
1100 ;; Properly close all local lists and other lists
1101 (when (org-lparse-current-environment-p 'quote)
1102 (org-lparse-end-environment 'quote))
1104 (org-lparse-end-level 1 umax)
1106 ;; the </div> to close the last text-... div.
1107 (when (and (> umax 0) org-lparse-dyn-first-heading-pos)
1108 (org-lparse-end-outline-text-or-outline))
1110 (org-lparse-end 'DOCUMENT-BODY opt-plist)
1111 (unless body-only
1112 (org-lparse-end 'DOCUMENT-CONTENT))
1114 (org-lparse-end 'EXPORT)
1116 ;; kill collection buffer
1117 (when org-lparse-collect-buffer
1118 (kill-buffer org-lparse-collect-buffer))
1120 (goto-char (point-min))
1121 (or (org-export-push-to-kill-ring
1122 (upcase (symbol-name org-lparse-backend)))
1123 (message "Exporting... done"))
1125 (cond
1126 ((not to-buffer)
1127 (let ((f (org-lparse-get 'SAVE-METHOD)))
1128 (or (and f (functionp f) (funcall f filename opt-plist))
1129 (save-buffer)))
1130 (or (and (boundp 'org-lparse-other-backend)
1131 org-lparse-other-backend
1132 (not (equal org-lparse-backend org-lparse-other-backend))
1133 (org-lparse-do-convert
1134 buffer-file-name (symbol-name org-lparse-other-backend)))
1135 (current-buffer)))
1136 ((eq to-buffer 'string)
1137 (prog1 (buffer-substring (point-min) (point-max))
1138 (kill-buffer (current-buffer))))
1139 (t (current-buffer))))))
1141 (defun org-lparse-format-table (lines olines)
1142 "Returns backend-specific code for org-type and table-type tables."
1143 (if (stringp lines)
1144 (setq lines (org-split-string lines "\n")))
1145 (if (string-match "^[ \t]*|" (car lines))
1146 ;; A normal org table
1147 (org-lparse-format-org-table lines nil)
1148 ;; Table made by table.el
1149 (or (org-lparse-format-table-table-using-table-generate-source
1150 ;; FIXME: Need to take care of this during merge
1151 (if (eq org-lparse-backend 'xhtml) 'html org-lparse-backend)
1152 olines
1153 (not org-export-prefer-native-exporter-for-tables))
1154 ;; We are here only when table.el table has NO col or row
1155 ;; spanning and the user prefers using org's own converter for
1156 ;; exporting of such simple table.el tables.
1157 (org-lparse-format-table-table lines))))
1159 (defun org-lparse-table-get-colalign-info (lines)
1160 (let ((col-cookies (org-find-text-property-in-string
1161 'org-col-cookies (car lines))))
1162 (when (and col-cookies org-table-clean-did-remove-column)
1163 (setq col-cookies
1164 (mapcar (lambda (x) (cons (1- (car x)) (cdr x))) col-cookies)))
1165 col-cookies))
1167 (defvar org-lparse-table-style)
1168 (defvar org-lparse-table-ncols)
1169 (defvar org-lparse-table-rownum)
1170 (defvar org-lparse-table-is-styled)
1171 (defvar org-lparse-table-begin-marker)
1172 (defvar org-lparse-table-num-numeric-items-per-column)
1173 (defvar org-lparse-table-colalign-info)
1174 (defvar org-lparse-table-colalign-vector)
1176 ;; Following variables are defined in org-table.el
1177 (defvar org-table-number-fraction)
1178 (defvar org-table-number-regexp)
1179 (defun org-lparse-org-table-to-list-table (lines &optional splice)
1180 "Convert org-table to list-table.
1181 LINES is a list of the form (ROW1 ROW2 ROW3 ...) where each
1182 element is a `string' representing a single row of org-table.
1183 Thus each ROW has vertical separators \"|\" separating the table
1184 fields. A ROW could also be a row-group separator of the form
1185 \"|---...|\". Return a list of the form (ROW1 ROW2 ROW3
1186 ...). ROW could either be symbol `:hrule' or a list of the
1187 form (FIELD1 FIELD2 FIELD3 ...) as appropriate."
1188 (let (line lines-1)
1189 (cond
1190 (splice
1191 (while (setq line (pop lines))
1192 (unless (string-match "^[ \t]*|-" line)
1193 (push (org-split-string line "[ \t]*|[ \t]*") lines-1))))
1195 (while (setq line (pop lines))
1196 (cond
1197 ((string-match "^[ \t]*|-" line)
1198 (when lines
1199 (push :hrule lines-1)))
1201 (push (org-split-string line "[ \t]*|[ \t]*") lines-1))))))
1202 (nreverse lines-1)))
1204 (defun org-lparse-insert-org-table (lines &optional splice)
1205 "Format a org-type table into backend-specific code.
1206 LINES is a list of lines. Optional argument SPLICE means, do not
1207 insert header and surrounding <table> tags, just format the lines.
1208 Optional argument NO-CSS means use XHTML attributes instead of CSS
1209 for formatting. This is required for the DocBook exporter."
1210 (require 'org-table)
1211 ;; Get rid of hlines at beginning and end
1212 (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
1213 (setq lines (nreverse lines))
1214 (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
1215 (setq lines (nreverse lines))
1216 (when org-export-table-remove-special-lines
1217 ;; Check if the table has a marking column. If yes remove the
1218 ;; column and the special lines
1219 (setq lines (org-table-clean-before-export lines)))
1220 (let* ((caption (org-find-text-property-in-string 'org-caption (car lines)))
1221 (caption (and caption (org-xml-encode-org-text caption)))
1222 (label (org-find-text-property-in-string 'org-label (car lines)))
1223 (org-lparse-table-colalign-info (org-lparse-table-get-colalign-info lines))
1224 (attributes (org-find-text-property-in-string 'org-attributes
1225 (car lines)))
1226 (head (and org-export-highlight-first-table-line
1227 (delq nil (mapcar
1228 (lambda (x) (string-match "^[ \t]*|-" x))
1229 (cdr lines))))))
1230 (setq lines (org-lparse-org-table-to-list-table lines splice))
1231 (org-lparse-insert-list-table
1232 lines splice caption label attributes head org-lparse-table-colalign-info)))
1234 (defun org-lparse-insert-list-table (lines &optional splice
1235 caption label attributes head
1236 org-lparse-table-colalign-info)
1237 (or (featurep 'org-table) ; required for
1238 (require 'org-table)) ; `org-table-number-regexp'
1239 (let* ((org-lparse-table-rownum -1) org-lparse-table-ncols i (cnt 0)
1240 tbopen fields line
1241 org-lparse-table-cur-rowgrp-is-hdr
1242 org-lparse-table-rowgrp-open
1243 org-lparse-table-num-numeric-items-per-column
1244 org-lparse-table-colalign-vector n
1245 org-lparse-table-rowgrp-info
1246 org-lparse-table-begin-marker
1247 (org-lparse-table-style 'org-table)
1248 org-lparse-table-is-styled)
1249 (cond
1250 (splice
1251 (setq org-lparse-table-is-styled nil)
1252 (while (setq line (pop lines))
1253 (insert (org-lparse-format-table-row line) "\n")))
1255 (setq org-lparse-table-is-styled t)
1256 (org-lparse-begin 'TABLE caption label attributes)
1257 (setq org-lparse-table-begin-marker (point))
1258 (org-lparse-begin-table-rowgroup head)
1259 (while (setq line (pop lines))
1260 (cond
1261 ((equal line :hrule)
1262 (org-lparse-begin-table-rowgroup))
1264 (insert (org-lparse-format-table-row line) "\n"))))
1265 (org-lparse-end 'TABLE-ROWGROUP)
1266 (org-lparse-end-table)))))
1268 (defun org-lparse-format-org-table (lines &optional splice)
1269 (with-temp-buffer
1270 (org-lparse-insert-org-table lines splice)
1271 (buffer-substring-no-properties (point-min) (point-max))))
1273 (defun org-lparse-format-list-table (lines &optional splice)
1274 (with-temp-buffer
1275 (org-lparse-insert-list-table lines splice)
1276 (buffer-substring-no-properties (point-min) (point-max))))
1278 (defun org-lparse-insert-table-table (lines)
1279 "Format a table generated by table.el into backend-specific code.
1280 This conversion does *not* use `table-generate-source' from table.el.
1281 This has the advantage that Org-mode's HTML conversions can be used.
1282 But it has the disadvantage, that no cell- or row-spanning is allowed."
1283 (let (line field-buffer
1284 (org-lparse-table-cur-rowgrp-is-hdr
1285 org-export-highlight-first-table-line)
1286 (caption nil)
1287 (attributes nil)
1288 (label nil)
1289 (org-lparse-table-style 'table-table)
1290 (org-lparse-table-is-styled nil)
1291 fields org-lparse-table-ncols i (org-lparse-table-rownum -1)
1292 (empty (org-lparse-format 'SPACES 1)))
1293 (org-lparse-begin 'TABLE caption label attributes)
1294 (while (setq line (pop lines))
1295 (cond
1296 ((string-match "^[ \t]*\\+-" line)
1297 (when field-buffer
1298 (let ((org-export-table-row-tags '("<tr>" . "</tr>"))
1299 ;; (org-export-html-table-use-header-tags-for-first-column nil)
1301 (insert (org-lparse-format-table-row field-buffer empty)))
1302 (setq org-lparse-table-cur-rowgrp-is-hdr nil)
1303 (setq field-buffer nil)))
1305 ;; Break the line into fields and store the fields
1306 (setq fields (org-split-string line "[ \t]*|[ \t]*"))
1307 (if field-buffer
1308 (setq field-buffer (mapcar
1309 (lambda (x)
1310 (concat x (org-lparse-format 'LINE-BREAK)
1311 (pop fields)))
1312 field-buffer))
1313 (setq field-buffer fields)))))
1314 (org-lparse-end-table)))
1316 (defun org-lparse-format-table-table (lines)
1317 (with-temp-buffer
1318 (org-lparse-insert-table-table lines)
1319 (buffer-substring-no-properties (point-min) (point-max))))
1321 (defvar table-source-languages) ; defined in table.el
1322 (defun org-lparse-format-table-table-using-table-generate-source (backend
1323 lines
1324 &optional
1325 spanned-only)
1326 "Format a table into BACKEND, using `table-generate-source' from table.el.
1327 Use SPANNED-ONLY to suppress exporting of simple table.el tables.
1329 When SPANNED-ONLY is nil, all table.el tables are exported. When
1330 SPANNED-ONLY is non-nil, only tables with either row or column
1331 spans are exported.
1333 This routine returns the generated source or nil as appropriate.
1335 Refer docstring of `org-export-prefer-native-exporter-for-tables'
1336 for further information."
1337 (require 'table)
1338 (with-current-buffer (get-buffer-create " org-tmp1 ")
1339 (erase-buffer)
1340 (insert (mapconcat 'identity lines "\n"))
1341 (goto-char (point-min))
1342 (if (not (re-search-forward "|[^+]" nil t))
1343 (error "Error processing table"))
1344 (table-recognize-table)
1345 (when (or (not spanned-only)
1346 (let* ((dim (table-query-dimension))
1347 (c (nth 4 dim)) (r (nth 5 dim)) (cells (nth 6 dim)))
1348 (not (= (* c r) cells))))
1349 (with-current-buffer (get-buffer-create " org-tmp2 ") (erase-buffer))
1350 (cond
1351 ((member backend table-source-languages)
1352 (table-generate-source backend " org-tmp2 ")
1353 (set-buffer " org-tmp2 ")
1354 (buffer-substring (point-min) (point-max)))
1356 ;; table.el doesn't support the given backend. Currently this
1357 ;; happens in case of odt export. Strip the table from the
1358 ;; generated document. A better alternative would be to embed
1359 ;; the table as ascii text in the output document.
1360 (org-lparse-warn
1361 (concat
1362 "Found table.el-type table in the source org file. "
1363 (format "table.el doesn't support %s backend. "
1364 (upcase (symbol-name backend)))
1365 "Skipping ahead ..."))
1366 "")))))
1368 (defun org-lparse-handle-time-stamps (s)
1369 "Format time stamps in string S, or remove them."
1370 (catch 'exit
1371 (let (r b)
1372 (when org-maybe-keyword-time-regexp
1373 (while (string-match org-maybe-keyword-time-regexp s)
1374 (or b (setq b (substring s 0 (match-beginning 0))))
1375 (setq r (concat
1376 r (substring s 0 (match-beginning 0)) " "
1377 (org-lparse-format
1378 'FONTIFY
1379 (concat
1380 (if (match-end 1)
1381 (org-lparse-format
1382 'FONTIFY
1383 (match-string 1 s) "timestamp-kwd"))
1385 (org-lparse-format
1386 'FONTIFY
1387 (substring (org-translate-time (match-string 3 s)) 1 -1)
1388 "timestamp"))
1389 "timestamp-wrapper"))
1390 s (substring s (match-end 0)))))
1392 ;; Line break if line started and ended with time stamp stuff
1393 (if (not r)
1395 (setq r (concat r s))
1396 (unless (string-match "\\S-" (concat b s))
1397 (setq r (concat r (org-lparse-format 'LINE-BREAK))))
1398 r))))
1400 (defun org-xml-encode-plain-text (s)
1401 "Convert plain text characters to HTML equivalent.
1402 Possible conversions are set in `org-export-html-protect-char-alist'."
1403 (let ((cl (org-lparse-get 'PLAIN-TEXT-MAP)) c)
1404 (while (setq c (pop cl))
1405 (let ((start 0))
1406 (while (string-match (car c) s start)
1407 (setq s (replace-match (cdr c) t t s)
1408 start (1+ (match-beginning 0))))))
1411 (defun org-xml-encode-org-text-skip-links (string)
1412 "Prepare STRING for HTML export. Apply all active conversions.
1413 If there are links in the string, don't modify these. If STRING
1414 is nil, return nil."
1415 (when string
1416 (let* ((re (concat org-bracket-link-regexp "\\|"
1417 (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")))
1418 m s l res)
1419 (while (setq m (string-match re string))
1420 (setq s (substring string 0 m)
1421 l (match-string 0 string)
1422 string (substring string (match-end 0)))
1423 (push (org-xml-encode-org-text s) res)
1424 (push l res))
1425 (push (org-xml-encode-org-text string) res)
1426 (apply 'concat (nreverse res)))))
1428 (defun org-xml-encode-org-text (s)
1429 "Apply all active conversions to translate special ASCII to HTML."
1430 (setq s (org-xml-encode-plain-text s))
1431 (if org-export-html-expand
1432 (while (string-match "@&lt;\\([^&]*\\)&gt;" s)
1433 (setq s (replace-match "<\\1>" t nil s))))
1434 (if org-export-with-emphasize
1435 (setq s (org-lparse-apply-char-styles s)))
1436 (if org-export-with-special-strings
1437 (setq s (org-lparse-convert-special-strings s)))
1438 (if org-export-with-sub-superscripts
1439 (setq s (org-lparse-apply-sub-superscript-styles s)))
1440 (if org-export-with-TeX-macros
1441 (let ((start 0) wd rep)
1442 (while (setq start (string-match "\\\\\\([a-zA-Z]+[0-9]*\\)\\({}\\)?"
1443 s start))
1444 (if (get-text-property (match-beginning 0) 'org-protected s)
1445 (setq start (match-end 0))
1446 (setq wd (match-string 1 s))
1447 (if (setq rep (org-lparse-format 'ORG-ENTITY wd))
1448 (setq s (replace-match rep t t s))
1449 (setq start (+ start (length wd))))))))
1452 (defun org-lparse-convert-special-strings (string)
1453 "Convert special characters in STRING to HTML."
1454 (let ((all (org-lparse-get 'SPECIAL-STRING-REGEXPS))
1455 e a re rpl start)
1456 (while (setq a (pop all))
1457 (setq re (car a) rpl (cdr a) start 0)
1458 (while (string-match re string start)
1459 (if (get-text-property (match-beginning 0) 'org-protected string)
1460 (setq start (match-end 0))
1461 (setq string (replace-match rpl t nil string)))))
1462 string))
1464 (defun org-lparse-apply-sub-superscript-styles (string)
1465 "Apply subscript and superscript styles to STRING.
1466 Use `org-export-with-sub-superscripts' to control application of
1467 sub and superscript styles."
1468 (let (key c (s 0) (requireb (eq org-export-with-sub-superscripts '{})))
1469 (while (string-match org-match-substring-regexp string s)
1470 (cond
1471 ((and requireb (match-end 8)) (setq s (match-end 2)))
1472 ((get-text-property (match-beginning 2) 'org-protected string)
1473 (setq s (match-end 2)))
1475 (setq s (match-end 1)
1476 key (if (string= (match-string 2 string) "_")
1477 'subscript 'superscript)
1478 c (or (match-string 8 string)
1479 (match-string 6 string)
1480 (match-string 5 string))
1481 string (replace-match
1482 (concat (match-string 1 string)
1483 (org-lparse-format 'FONTIFY c key))
1484 t t string)))))
1485 (while (string-match "\\\\\\([_^]\\)" string)
1486 (setq string (replace-match (match-string 1 string) t t string)))
1487 string))
1489 (defvar org-lparse-char-styles
1490 `(("*" bold)
1491 ("/" emphasis)
1492 ("_" underline)
1493 ("=" code)
1494 ("~" verbatim)
1495 ("+" strike))
1496 "Map Org emphasis markers to char styles.
1497 This is an alist where each element is of the
1498 form (ORG-EMPHASIS-CHAR . CHAR-STYLE).")
1500 (defun org-lparse-apply-char-styles (string)
1501 "Apply char styles to STRING.
1502 The variable `org-lparse-char-styles' controls how the Org
1503 emphasis markers are interpreted."
1504 (let ((s 0) rpl)
1505 (while (string-match org-emph-re string s)
1506 (if (not (equal
1507 (substring string (match-beginning 3) (1+ (match-beginning 3)))
1508 (substring string (match-beginning 4) (1+ (match-beginning 4)))))
1509 (setq s (match-beginning 0)
1511 (concat
1512 (match-string 1 string)
1513 (org-lparse-format
1514 'FONTIFY (match-string 4 string)
1515 (nth 1 (assoc (match-string 3 string)
1516 org-lparse-char-styles)))
1517 (match-string 5 string))
1518 string (replace-match rpl t t string)
1519 s (+ s (- (length rpl) 2)))
1520 (setq s (1+ s))))
1521 string))
1523 (defun org-lparse-export-list-line (line pos struct prevs)
1524 "Insert list syntax in export buffer. Return LINE, maybe modified.
1526 POS is the item position or line position the line had before
1527 modifications to buffer. STRUCT is the list structure. PREVS is
1528 the alist of previous items."
1529 (let* ((get-type
1530 (function
1531 ;; Translate type of list containing POS to "d", "o" or
1532 ;; "u".
1533 (lambda (pos struct prevs)
1534 (let ((type (org-list-get-list-type pos struct prevs)))
1535 (cond
1536 ((eq 'ordered type) "o")
1537 ((eq 'descriptive type) "d")
1538 (t "u"))))))
1539 (get-closings
1540 (function
1541 ;; Return list of all items and sublists ending at POS, in
1542 ;; reverse order.
1543 (lambda (pos)
1544 (let (out)
1545 (catch 'exit
1546 (mapc (lambda (e)
1547 (let ((end (nth 6 e))
1548 (item (car e)))
1549 (cond
1550 ((= end pos) (push item out))
1551 ((>= item pos) (throw 'exit nil)))))
1552 struct))
1553 out)))))
1554 ;; First close any previous item, or list, ending at POS.
1555 (mapc (lambda (e)
1556 (let* ((lastp (= (org-list-get-last-item e struct prevs) e))
1557 (first-item (org-list-get-list-begin e struct prevs))
1558 (type (funcall get-type first-item struct prevs)))
1559 (org-lparse-end-paragraph)
1560 ;; Ending for every item
1561 (org-lparse-end-list-item-1 type)
1562 ;; We're ending last item of the list: end list.
1563 (when lastp
1564 (org-lparse-end-list type)
1565 (org-lparse-begin-paragraph))))
1566 (funcall get-closings pos))
1567 (cond
1568 ;; At an item: insert appropriate tags in export buffer.
1569 ((assq pos struct)
1570 (string-match
1571 (concat "[ \t]*\\(\\S-+[ \t]*\\)"
1572 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
1573 "\\(?:\\(\\[[ X-]\\]\\)[ \t]+\\)?"
1574 "\\(?:\\(.*\\)[ \t]+::\\(?:[ \t]+\\|$\\)\\)?"
1575 "\\(.*\\)") line)
1576 (let* ((checkbox (match-string 3 line))
1577 (desc-tag (or (match-string 4 line) "???"))
1578 (body (or (match-string 5 line) ""))
1579 (list-beg (org-list-get-list-begin pos struct prevs))
1580 (firstp (= list-beg pos))
1581 ;; Always refer to first item to determine list type, in
1582 ;; case list is ill-formed.
1583 (type (funcall get-type list-beg struct prevs))
1584 (counter (let ((count-tmp (org-list-get-counter pos struct)))
1585 (cond
1586 ((not count-tmp) nil)
1587 ((string-match "[A-Za-z]" count-tmp)
1588 (- (string-to-char (upcase count-tmp)) 64))
1589 ((string-match "[0-9]+" count-tmp)
1590 count-tmp)))))
1591 (when firstp
1592 (org-lparse-end-paragraph)
1593 (org-lparse-begin-list type))
1595 (let ((arg (cond ((equal type "d") desc-tag)
1596 ((equal type "o") counter))))
1597 (org-lparse-begin-list-item type arg))
1599 ;; If line had a checkbox, some additional modification is required.
1600 (when checkbox
1601 (setq body
1602 (concat
1603 (org-lparse-format
1604 'FONTIFY (concat
1606 (cond
1607 ((string-match "X" checkbox) "X")
1608 ((string-match " " checkbox)
1609 (org-lparse-format 'SPACES 1))
1610 (t "-"))
1611 "]")
1612 'code)
1614 body)))
1615 ;; Return modified line
1616 body))
1617 ;; At a list ender: go to next line (side-effects only).
1618 ((equal "ORG-LIST-END-MARKER" line) (throw 'nextline nil))
1619 ;; Not at an item: return line unchanged (side-effects only).
1620 (t line))))
1622 (defun org-lparse-bind-local-variables (opt-plist)
1623 (mapc (lambda (x)
1624 (set (make-local-variable (nth 2 x))
1625 (plist-get opt-plist (car x))))
1626 org-export-plist-vars))
1628 (defvar org-lparse-table-rowgrp-open)
1629 (defvar org-lparse-table-cur-rowgrp-is-hdr)
1630 (defvar org-lparse-footnote-number)
1631 (defvar org-lparse-footnote-definitions)
1632 (defvar org-lparse-output-buffer nil
1633 "Buffer to which `org-do-lparse' writes to.
1634 This buffer contains the contents of the to-be-created exported
1635 document.")
1637 (defcustom org-lparse-debug nil
1638 "Enable or Disable logging of `org-lparse' callbacks.
1639 The parameters passed to the backend-registered ENTITY-CONTROL
1640 and ENTITY-FORMAT callbacks are logged as comment strings in the
1641 exported buffer. (org-lparse-format 'COMMENT fmt args) is used
1642 for logging. Customize this variable only if you are an expert
1643 user. Valid values of this variable are:
1644 nil : Disable logging
1645 control : Log all invocations of `org-lparse-begin' and
1646 `org-lparse-end' callbacks.
1647 format : Log invocations of `org-lparse-format' callbacks.
1648 t : Log all invocations of `org-lparse-begin', `org-lparse-end'
1649 and `org-lparse-format' callbacks,"
1650 :group 'org-lparse
1651 :type '(choice
1652 (const :tag "Disable" nil)
1653 (const :tag "Format callbacks" format)
1654 (const :tag "Control callbacks" control)
1655 (const :tag "Format and Control callbacks" t)))
1657 (defun org-lparse-begin (entity &rest args)
1658 "Begin ENTITY in current buffer. ARGS is entity specific.
1659 ENTITY can be one of PARAGRAPH, LIST, LIST-ITEM etc.
1661 Use (org-lparse-begin 'LIST \"o\") to begin a list in current
1662 buffer.
1664 See `org-xhtml-entity-control-callbacks-alist' for more
1665 information."
1666 (when (and (member org-lparse-debug '(t control))
1667 (not (eq entity 'DOCUMENT-CONTENT)))
1668 (insert (org-lparse-format 'COMMENT "%s BEGIN %S" entity args)))
1670 (let ((f (cadr (assoc entity org-lparse-entity-control-callbacks-alist))))
1671 (unless f (error "Unknown entity: %s" entity))
1672 (apply f args)))
1674 (defun org-lparse-end (entity &rest args)
1675 "Close ENTITY in current buffer. ARGS is entity specific.
1676 ENTITY can be one of PARAGRAPH, LIST, LIST-ITEM
1677 etc.
1679 Use (org-lparse-end 'LIST \"o\") to close a list in current
1680 buffer.
1682 See `org-xhtml-entity-control-callbacks-alist' for more
1683 information."
1684 (when (and (member org-lparse-debug '(t control))
1685 (not (eq entity 'DOCUMENT-CONTENT)))
1686 (insert (org-lparse-format 'COMMENT "%s END %S" entity args)))
1688 (let ((f (caddr (assoc entity org-lparse-entity-control-callbacks-alist))))
1689 (unless f (error "Unknown entity: %s" entity))
1690 (apply f args)))
1692 (defun org-lparse-begin-paragraph (&optional style)
1693 "Insert <p>, but first close previous paragraph if any."
1694 (org-lparse-end-paragraph)
1695 (org-lparse-begin 'PARAGRAPH style)
1696 (setq org-lparse-par-open t))
1698 (defun org-lparse-end-paragraph ()
1699 "Close paragraph if there is one open."
1700 (when org-lparse-par-open
1701 (org-lparse-end 'PARAGRAPH)
1702 (setq org-lparse-par-open nil)))
1704 (defun org-lparse-end-list-item-1 (&optional type)
1705 "Close <li> if necessary."
1706 (org-lparse-end-paragraph)
1707 (org-lparse-end-list-item (or type "u")))
1709 (defun org-lparse-preprocess-after-blockquote-hook ()
1710 "Treat `org-lparse-special-blocks' specially."
1711 (goto-char (point-min))
1712 (while (re-search-forward
1713 "^[ \t]*#\\+\\(begin\\|end\\)_\\(\\S-+\\)[ \t]*\\(.*\\)$" nil t)
1714 (when (member (downcase (match-string 2)) org-lparse-special-blocks)
1715 (replace-match
1716 (if (equal (downcase (match-string 1)) "begin")
1717 (format "ORG-%s-START %s" (upcase (match-string 2))
1718 (match-string 3))
1719 (format "ORG-%s-END %s" (upcase (match-string 2))
1720 (match-string 3))) t t))))
1722 (add-hook 'org-export-preprocess-after-blockquote-hook
1723 'org-lparse-preprocess-after-blockquote-hook)
1725 (defun org-lparse-strip-experimental-blocks-maybe-hook ()
1726 "Strip \"list-table\" and \"annotation\" blocks.
1727 Stripping happens only when the exported backend is not one of
1728 \"odt\" or \"xhtml\"."
1729 (when (not org-lparse-backend)
1730 (message "Stripping following blocks - %S" org-lparse-special-blocks)
1731 (goto-char (point-min))
1732 (let ((case-fold-search t))
1733 (while
1734 (re-search-forward
1735 "^[ \t]*#\\+begin_\\(\\S-+\\)\\([ \t]+.*\\)?\n\\([^\000]*?\\)\n[ \t]*#\\+end_\\1\\>.*"
1736 nil t)
1737 (when (member (match-string 1) org-lparse-special-blocks)
1738 (replace-match "" t t))))))
1740 (add-hook 'org-export-preprocess-hook
1741 'org-lparse-strip-experimental-blocks-maybe-hook)
1743 (defvar org-lparse-list-table-p nil
1744 "Non-nil if `org-do-lparse' is within a list-table.")
1746 (defvar org-lparse-dyn-current-environment nil)
1747 (defun org-lparse-begin-environment (style &optional env-options-plist)
1748 (case style
1749 (list-table
1750 (setq org-lparse-list-table-p t))
1751 (t (setq org-lparse-dyn-current-environment style)
1752 (org-lparse-begin 'ENVIRONMENT style env-options-plist))))
1754 (defun org-lparse-end-environment (style &optional env-options-plist)
1755 (case style
1756 (list-table
1757 (setq org-lparse-list-table-p nil))
1758 (t (org-lparse-end 'ENVIRONMENT style env-options-plist)
1759 (setq org-lparse-dyn-current-environment nil))))
1761 (defun org-lparse-current-environment-p (style)
1762 (eq org-lparse-dyn-current-environment style))
1764 (defun org-lparse-begin-footnote-definition (n)
1765 (org-lparse-begin-collect)
1766 (setq org-lparse-insert-tag-with-newlines nil)
1767 (org-lparse-begin 'FOOTNOTE-DEFINITION n))
1769 (defun org-lparse-end-footnote-definition (n)
1770 (org-lparse-end 'FOOTNOTE-DEFINITION n)
1771 (setq org-lparse-insert-tag-with-newlines 'both)
1772 (let ((footnote-def (org-lparse-end-collect)))
1773 ;; Cleanup newlines in footnote definition. This ensures that a
1774 ;; transcoded line is never (wrongly) broken in to multiple lines.
1775 (let ((pos 0))
1776 (while (string-match "[\r\n]+" footnote-def pos)
1777 (setq pos (1+ (match-beginning 0)))
1778 (setq footnote-def (replace-match " " t t footnote-def))))
1779 (push (cons n footnote-def) org-lparse-footnote-definitions)))
1781 (defvar org-lparse-collect-buffer nil
1782 "An auxiliary buffer named \"*Org Lparse Collect*\".
1783 `org-do-lparse' uses this as output buffer while collecting
1784 footnote definitions and table-cell contents of list-tables. See
1785 `org-lparse-begin-collect' and `org-lparse-end-collect'.")
1787 (defvar org-lparse-collect-count nil
1788 "Count number of calls to `org-lparse-begin-collect'.
1789 Use this counter to catch chained collections if they ever
1790 happen.")
1792 (defun org-lparse-begin-collect ()
1793 "Temporarily switch to `org-lparse-collect-buffer'.
1794 Also erase it's contents."
1795 (unless (zerop org-lparse-collect-count)
1796 (error "FIXME (org-lparse.el): Encountered chained collections"))
1797 (incf org-lparse-collect-count)
1798 (unless org-lparse-collect-buffer
1799 (setq org-lparse-collect-buffer
1800 (get-buffer-create "*Org Lparse Collect*")))
1801 (set-buffer org-lparse-collect-buffer)
1802 (erase-buffer))
1804 (defun org-lparse-end-collect ()
1805 "Switch to `org-lparse-output-buffer'.
1806 Return contents of `org-lparse-collect-buffer' as a `string'."
1807 (assert (> org-lparse-collect-count 0))
1808 (decf org-lparse-collect-count)
1809 (prog1 (buffer-string)
1810 (erase-buffer)
1811 (set-buffer org-lparse-output-buffer)))
1813 (defun org-lparse-format (entity &rest args)
1814 "Format ENTITY in backend-specific way and return it.
1815 ARGS is specific to entity being formatted.
1817 Use (org-lparse-format 'HEADING \"text\" 1) to format text as
1818 level 1 heading.
1820 See `org-xhtml-entity-format-callbacks-alist' for more information."
1821 (when (and (member org-lparse-debug '(t format))
1822 (not (equal entity 'COMMENT)))
1823 (insert (org-lparse-format 'COMMENT "%s: %S" entity args)))
1824 (cond
1825 ((consp entity)
1826 (let ((text (pop args)))
1827 (apply 'org-lparse-format 'TAGS entity text args)))
1829 (let ((f (cdr (assoc entity org-lparse-entity-format-callbacks-alist))))
1830 (unless f (error "Unknown entity: %s" entity))
1831 (apply f args)))))
1833 (defun org-lparse-insert (entity &rest args)
1834 (insert (apply 'org-lparse-format entity args)))
1836 (defun org-lparse-prepare-toc (lines level-offset opt-plist umax-toc)
1837 (let* ((quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
1838 (org-min-level (org-get-min-level lines level-offset))
1839 (org-last-level org-min-level)
1840 level)
1841 (with-temp-buffer
1842 (org-lparse-bind-local-variables opt-plist)
1843 (erase-buffer)
1844 (org-lparse-begin 'TOC (nth 3 (plist-get opt-plist :lang-words)) umax-toc)
1845 (setq
1846 lines
1847 (mapcar
1848 #'(lambda (line)
1849 (when (and (string-match org-todo-line-regexp line)
1850 (not (get-text-property 0 'org-protected line))
1851 (<= (setq level (org-tr-level
1852 (- (match-end 1) (match-beginning 1)
1853 level-offset)))
1854 umax-toc))
1855 (let ((txt (save-match-data
1856 (org-xml-encode-org-text-skip-links
1857 (org-export-cleanup-toc-line
1858 (match-string 3 line)))))
1859 (todo (and
1860 org-export-mark-todo-in-toc
1861 (or (and (match-beginning 2)
1862 (not (member (match-string 2 line)
1863 org-done-keywords)))
1864 (and (= level umax-toc)
1865 (org-search-todo-below
1866 line lines level)))))
1867 tags)
1868 ;; Check for targets
1869 (while (string-match org-any-target-regexp line)
1870 (setq line
1871 (replace-match
1872 (let ((org-lparse-encode-pending t))
1873 (org-lparse-format 'FONTIFY
1874 (match-string 1 line) "target"))
1875 t t line)))
1876 (when (string-match
1877 (org-re "[ \t]+:\\([[:alnum:]_@:]+\\):[ \t]*$") txt)
1878 (setq tags (match-string 1 txt)
1879 txt (replace-match "" t nil txt)))
1880 (when (string-match quote-re0 txt)
1881 (setq txt (replace-match "" t t txt)))
1882 (while (string-match "&lt;\\(&lt;\\)+\\|&gt;\\(&gt;\\)+" txt)
1883 (setq txt (replace-match "" t t txt)))
1884 (org-lparse-format
1885 'TOC-ITEM
1886 (let* ((snumber (org-section-number level))
1887 (href (replace-regexp-in-string
1888 "\\." "-" (format "sec-%s" snumber)))
1889 (href
1891 (cdr (assoc
1892 href org-export-preferred-target-alist))
1893 href))
1894 (href (org-solidify-link-text href)))
1895 (org-lparse-format 'TOC-ENTRY snumber todo txt tags href))
1896 level org-last-level)
1897 (setq org-last-level level)))
1898 line)
1899 lines))
1900 (org-lparse-end 'TOC)
1901 (setq org-lparse-toc (buffer-string))))
1902 lines)
1904 (defun org-lparse-format-table-row (fields &optional text-for-empty-fields)
1905 (if org-lparse-table-ncols
1906 ;; second and subsequent rows of the table
1907 (when (and org-lparse-list-table-p
1908 (> (length fields) org-lparse-table-ncols))
1909 (error "Table row has %d columns but header row claims %d columns"
1910 (length fields) org-lparse-table-ncols))
1911 ;; first row of the table
1912 (setq org-lparse-table-ncols (length fields))
1913 (when org-lparse-table-is-styled
1914 (setq org-lparse-table-num-numeric-items-per-column
1915 (make-vector org-lparse-table-ncols 0))
1916 (setq org-lparse-table-colalign-vector
1917 (make-vector org-lparse-table-ncols nil))
1918 (let ((c -1))
1919 (while (< (incf c) org-lparse-table-ncols)
1920 (let* ((col-cookie (cdr (assoc (1+ c) org-lparse-table-colalign-info)))
1921 (align (nth 0 col-cookie)))
1922 (setf (aref org-lparse-table-colalign-vector c)
1923 (cond
1924 ((string= align "l") "left")
1925 ((string= align "r") "right")
1926 ((string= align "c") "center")
1927 (t nil))))))))
1928 (incf org-lparse-table-rownum)
1929 (let ((i -1))
1930 (org-lparse-format
1931 'TABLE-ROW
1932 (mapconcat
1933 (lambda (x)
1934 (when (and (string= x "") text-for-empty-fields)
1935 (setq x text-for-empty-fields))
1936 (incf i)
1937 (let (col-cookie horiz-span)
1938 (when org-lparse-table-is-styled
1939 (when (and (< i org-lparse-table-ncols)
1940 (string-match org-table-number-regexp x))
1941 (incf (aref org-lparse-table-num-numeric-items-per-column i)))
1942 (setq col-cookie (cdr (assoc (1+ i) org-lparse-table-colalign-info))
1943 horiz-span (nth 1 col-cookie)))
1944 (org-lparse-format
1945 'TABLE-CELL x org-lparse-table-rownum i (or horiz-span 0))))
1946 fields "\n"))))
1948 (defun org-lparse-get (what &optional opt-plist)
1949 "Query for value of WHAT for the current backend `org-lparse-backend'.
1950 See also `org-lparse-backend-get'."
1951 (if (boundp 'org-lparse-backend)
1952 (org-lparse-backend-get (symbol-name org-lparse-backend) what opt-plist)
1953 (error "org-lparse-backend is not bound yet")))
1955 (defun org-lparse-backend-get (backend what &optional opt-plist)
1956 "Query BACKEND for value of WHAT.
1957 Dispatch the call to `org-<backend>-user-get'. If that throws an
1958 error, dispatch the call to `org-<backend>-get'. See
1959 `org-xhtml-get' for all known settings queried for by
1960 `org-lparse' during the course of export."
1961 (assert (stringp backend) t)
1962 (unless (org-lparse-backend-is-native-p backend)
1963 (error "Unknown native backend %s" backend))
1964 (let ((backend-get-method (intern (format "org-%s-get" backend)))
1965 (backend-user-get-method (intern (format "org-%s-user-get" backend))))
1966 (cond
1967 ((functionp backend-get-method)
1968 (condition-case nil
1969 (funcall backend-user-get-method what opt-plist)
1970 (error (funcall backend-get-method what opt-plist))))
1972 (error "Native backend %s doesn't define %s" backend backend-get-method)))))
1974 (defun org-lparse-insert-tag (tag &rest args)
1975 (when (member org-lparse-insert-tag-with-newlines '(lead both))
1976 (insert "\n"))
1977 (insert (apply 'format tag args))
1978 (when (member org-lparse-insert-tag-with-newlines '(trail both))
1979 (insert "\n")))
1981 (defun org-lparse-get-targets-from-title (title)
1982 (let* ((target (org-get-text-property-any 0 'target title))
1983 (extra-targets (assoc target org-export-target-aliases))
1984 (target (or (cdr (assoc target org-export-preferred-target-alist))
1985 target)))
1986 (cons target (remove target extra-targets))))
1988 (defun org-lparse-suffix-from-snumber (snumber)
1989 (let* ((snu (replace-regexp-in-string "\\." "-" snumber))
1990 (href (cdr (assoc (concat "sec-" snu)
1991 org-export-preferred-target-alist))))
1992 (org-solidify-link-text (or href snu))))
1994 (defun org-lparse-begin-level (level title umax head-count)
1995 "Insert a new LEVEL in HTML export.
1996 When TITLE is nil, just close all open levels."
1997 (org-lparse-end-level level umax)
1998 (unless title (error "Why is heading nil"))
1999 (let* ((targets (org-lparse-get-targets-from-title title))
2000 (target (car targets)) (extra-targets (cdr targets))
2001 (target (and target (org-solidify-link-text target)))
2002 (extra-class (org-get-text-property-any 0 'html-container-class title))
2003 snumber tags level1 class)
2004 (when (string-match (org-re "\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") title)
2005 (setq tags (and org-export-with-tags (match-string 1 title)))
2006 (setq title (replace-match "" t t title)))
2007 (if (> level umax)
2008 (progn
2009 (if (aref org-levels-open (1- level))
2010 (org-lparse-end-list-item-1)
2011 (aset org-levels-open (1- level) t)
2012 (org-lparse-end-paragraph)
2013 (org-lparse-begin-list 'unordered))
2014 (org-lparse-begin-list-item
2015 'unordered target (org-lparse-format
2016 'HEADLINE title extra-targets tags)))
2017 (aset org-levels-open (1- level) t)
2018 (setq snumber (org-section-number level))
2019 (setq level1 (+ level (or (org-lparse-get 'TOPLEVEL-HLEVEL) 1) -1))
2020 (unless (= head-count 1)
2021 (org-lparse-end-outline-text-or-outline))
2022 (org-lparse-begin-outline-and-outline-text
2023 level1 snumber title tags target extra-targets extra-class)
2024 (org-lparse-begin-paragraph))))
2026 (defun org-lparse-end-level (level umax)
2027 (org-lparse-end-paragraph)
2028 (loop for l from org-level-max downto level
2029 do (when (aref org-levels-open (1- l))
2030 ;; Terminate one level in HTML export
2031 (if (<= l umax)
2032 (org-lparse-end-outline-text-or-outline)
2033 (org-lparse-end-list-item-1)
2034 (org-lparse-end-list 'unordered))
2035 (aset org-levels-open (1- l) nil))))
2037 (defvar org-lparse-outline-text-open)
2038 (defun org-lparse-begin-outline-and-outline-text (level1 snumber title tags
2039 target extra-targets
2040 extra-class)
2041 (org-lparse-begin
2042 'OUTLINE level1 snumber title tags target extra-targets extra-class)
2043 (org-lparse-begin-outline-text level1 snumber extra-class))
2045 (defun org-lparse-end-outline-text-or-outline ()
2046 (cond
2047 (org-lparse-outline-text-open
2048 (org-lparse-end 'OUTLINE-TEXT)
2049 (setq org-lparse-outline-text-open nil))
2050 (t (org-lparse-end 'OUTLINE))))
2052 (defun org-lparse-begin-outline-text (level1 snumber extra-class)
2053 (assert (not org-lparse-outline-text-open) t)
2054 (setq org-lparse-outline-text-open t)
2055 (org-lparse-begin 'OUTLINE-TEXT level1 snumber extra-class))
2057 (defun org-lparse-html-list-type-to-canonical-list-type (ltype)
2058 (cdr (assoc ltype '(("o" . ordered)
2059 ("u" . unordered)
2060 ("d" . description)))))
2062 ;; following vars are bound during `org-do-lparse'
2063 (defvar org-lparse-list-stack)
2064 (defvar org-lparse-list-table:table-row)
2065 (defvar org-lparse-list-table:lines)
2067 ;; Notes on LIST-TABLES
2068 ;; ====================
2069 ;; Lists withing "list-table" blocks (as shown below)
2071 ;; #+begin_list-table
2072 ;; - Row 1
2073 ;; - 1.1
2074 ;; - 1.2
2075 ;; - 1.3
2076 ;; - Row 2
2077 ;; - 2.1
2078 ;; - 2.2
2079 ;; - 2.3
2080 ;; #+end_list-table
2082 ;; will be exported as though it were a table as shown below.
2084 ;; | Row 1 | 1.1 | 1.2 | 1.3 |
2085 ;; | Row 2 | 2.1 | 2.2 | 2.3 |
2087 ;; Note that org-tables are NOT multi-line and each line is mapped to
2088 ;; a unique row in the exported document. So if an exported table
2089 ;; needs to contain a single paragraph (with copious text) it needs to
2090 ;; be typed up in a single line. Editing such long lines using the
2091 ;; table editor will be a cumbersome task. Furthermore inclusion of
2092 ;; multi-paragraph text in a table cell is well-nigh impossible.
2094 ;; LIST-TABLEs are meant to circumvent the above problems with
2095 ;; org-tables.
2097 ;; Note that in the example above the list items could be paragraphs
2098 ;; themselves and the list can be arbitrarily deep.
2100 ;; Inspired by following thread:
2101 ;; https://lists.gnu.org/archive/html/emacs-orgmode/2011-03/msg01101.html
2103 (defun org-lparse-begin-list (ltype)
2104 (push ltype org-lparse-list-stack)
2105 (let ((list-level (length org-lparse-list-stack)))
2106 (cond
2107 ((not org-lparse-list-table-p)
2108 (org-lparse-begin 'LIST ltype))
2109 ;; process LIST-TABLE
2110 ((= 1 list-level)
2111 ;; begin LIST-TABLE
2112 (setq org-lparse-list-table:lines nil)
2113 (setq org-lparse-list-table:table-row nil))
2114 ((= 2 list-level)
2115 (ignore))
2117 (org-lparse-begin 'LIST ltype)))))
2119 (defun org-lparse-end-list (ltype)
2120 (pop org-lparse-list-stack)
2121 (let ((list-level (length org-lparse-list-stack)))
2122 (cond
2123 ((not org-lparse-list-table-p)
2124 (org-lparse-end 'LIST ltype))
2125 ;; process LIST-TABLE
2126 ((= 0 list-level)
2127 ;; end LIST-TABLE
2128 (insert (org-lparse-format-list-table
2129 (nreverse org-lparse-list-table:lines))))
2130 ((= 1 list-level)
2131 (ignore))
2133 (org-lparse-end 'LIST ltype)))))
2135 (defun org-lparse-begin-list-item (ltype &optional arg headline)
2136 (let ((list-level (length org-lparse-list-stack)))
2137 (cond
2138 ((not org-lparse-list-table-p)
2139 (org-lparse-begin 'LIST-ITEM ltype arg headline))
2140 ;; process LIST-TABLE
2141 ((= 1 list-level)
2142 ;; begin TABLE-ROW for LIST-TABLE
2143 (setq org-lparse-list-table:table-row nil)
2144 (org-lparse-begin-list-table:table-cell))
2145 ((= 2 list-level)
2146 ;; begin TABLE-CELL for LIST-TABLE
2147 (org-lparse-begin-list-table:table-cell))
2149 (org-lparse-begin 'LIST-ITEM ltype arg headline)))))
2151 (defun org-lparse-end-list-item (ltype)
2152 (let ((list-level (length org-lparse-list-stack)))
2153 (cond
2154 ((not org-lparse-list-table-p)
2155 (org-lparse-end 'LIST-ITEM ltype))
2156 ;; process LIST-TABLE
2157 ((= 1 list-level)
2158 ;; end TABLE-ROW for LIST-TABLE
2159 (org-lparse-end-list-table:table-cell)
2160 (push (nreverse org-lparse-list-table:table-row)
2161 org-lparse-list-table:lines))
2162 ((= 2 list-level)
2163 ;; end TABLE-CELL for LIST-TABLE
2164 (org-lparse-end-list-table:table-cell))
2166 (org-lparse-end 'LIST-ITEM ltype)))))
2168 (defvar org-lparse-list-table:table-cell-open)
2169 (defun org-lparse-begin-list-table:table-cell ()
2170 (org-lparse-end-list-table:table-cell)
2171 (setq org-lparse-list-table:table-cell-open t)
2172 (org-lparse-begin-collect)
2173 (org-lparse-begin-paragraph))
2175 (defun org-lparse-end-list-table:table-cell ()
2176 (when org-lparse-list-table:table-cell-open
2177 (setq org-lparse-list-table:table-cell-open nil)
2178 (org-lparse-end-paragraph)
2179 (push (org-lparse-end-collect)
2180 org-lparse-list-table:table-row)))
2182 (defvar org-lparse-table-rowgrp-info)
2183 (defun org-lparse-begin-table-rowgroup (&optional is-header-row)
2184 (push (cons (1+ org-lparse-table-rownum) :start) org-lparse-table-rowgrp-info)
2185 (org-lparse-begin 'TABLE-ROWGROUP is-header-row))
2187 (defun org-lparse-end-table ()
2188 (when org-lparse-table-is-styled
2189 ;; column groups
2190 (unless (car org-table-colgroup-info)
2191 (setq org-table-colgroup-info
2192 (cons :start (cdr org-table-colgroup-info))))
2194 ;; column alignment
2195 (let ((c -1))
2196 (mapc
2197 (lambda (x)
2198 (incf c)
2199 (setf (aref org-lparse-table-colalign-vector c)
2200 (or (aref org-lparse-table-colalign-vector c)
2201 (if (> (/ (float x) (1+ org-lparse-table-rownum))
2202 org-table-number-fraction)
2203 "right" "left"))))
2204 org-lparse-table-num-numeric-items-per-column)))
2205 (org-lparse-end 'TABLE))
2207 (defvar org-lparse-encode-pending nil)
2209 (defun org-lparse-format-tags (tag text prefix suffix &rest args)
2210 (cond
2211 ((consp tag)
2212 (concat prefix (apply 'format (car tag) args) text suffix
2213 (format (cdr tag))))
2214 ((stringp tag) ; singleton tag
2215 (concat prefix (apply 'format tag args) text))))
2217 (defun org-xml-fix-class-name (kwd) ; audit callers of this function
2218 "Turn todo keyword into a valid class name.
2219 Replaces invalid characters with \"_\"."
2220 (save-match-data
2221 (while (string-match "[^a-zA-Z0-9_]" kwd)
2222 (setq kwd (replace-match "_" t t kwd))))
2223 kwd)
2225 (defun org-lparse-format-todo (todo)
2226 (org-lparse-format 'FONTIFY
2227 (concat
2228 (ignore-errors (org-lparse-get 'TODO-KWD-CLASS-PREFIX))
2229 (org-xml-fix-class-name todo))
2230 (list (if (member todo org-done-keywords) "done" "todo")
2231 todo)))
2233 (defun org-lparse-format-extra-targets (extra-targets)
2234 (if (not extra-targets) ""
2235 (mapconcat (lambda (x)
2236 (setq x (org-solidify-link-text
2237 (if (org-uuidgen-p x) (concat "ID-" x) x)))
2238 (org-lparse-format 'ANCHOR "" x))
2239 extra-targets "")))
2241 (defun org-lparse-format-org-tags (tags)
2242 (if (not tags) ""
2243 (org-lparse-format
2244 'FONTIFY (mapconcat
2245 (lambda (x)
2246 (org-lparse-format
2247 'FONTIFY x
2248 (concat
2249 (ignore-errors (org-lparse-get 'TAG-CLASS-PREFIX))
2250 (org-xml-fix-class-name x))))
2251 (org-split-string tags ":")
2252 (org-lparse-format 'SPACES 1)) "tag")))
2254 (defun org-lparse-format-section-number (&optional snumber level)
2255 (and org-export-with-section-numbers
2256 (not org-lparse-body-only) snumber level
2257 (org-lparse-format 'FONTIFY snumber (format "section-number-%d" level))))
2259 (defun org-lparse-warn (msg)
2260 (if (not org-lparse-use-flashy-warning)
2261 (message msg)
2262 (put-text-property 0 (length msg) 'face 'font-lock-warning-face msg)
2263 (message msg)
2264 (sleep-for 3)))
2266 (defun org-xml-format-href (s)
2267 "Make sure the S is valid as a href reference in an XHTML document."
2268 (save-match-data
2269 (let ((start 0))
2270 (while (string-match "&" s start)
2271 (setq start (+ (match-beginning 0) 3)
2272 s (replace-match "&amp;" t t s)))))
2275 (defun org-xml-format-desc (s)
2276 "Make sure the S is valid as a description in a link."
2277 (if (and s (not (get-text-property 1 'org-protected s)))
2278 (save-match-data
2279 (org-xml-encode-org-text s))
2282 (provide 'org-lparse)
2284 ;;; org-lparse.el ends here