Release 7.5
[org-mode/org-tableheadings.git] / lisp / org-ascii.el
blob5727f0406be0923db951fda66a143325c6efa62b
1 ;;; org-ascii.el --- ASCII export for Org-mode
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
9 ;; Version: 7.5
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;;; Commentary:
29 ;;; Code:
31 (require 'org-exp)
33 (eval-when-compile
34 (require 'cl))
36 (defgroup org-export-ascii nil
37 "Options specific for ASCII export of Org-mode files."
38 :tag "Org Export ASCII"
39 :group 'org-export)
41 (defcustom org-export-ascii-underline '(?\- ?\= ?\~ ?^ ?\# ?\$)
42 "Characters for underlining headings in ASCII export.
43 In the given sequence, these characters will be used for level 1, 2, ..."
44 :group 'org-export-ascii
45 :type '(repeat character))
47 (defcustom org-export-ascii-bullets '(?* ?+ ?-)
48 "Bullet characters for headlines converted to lists in ASCII export.
49 The first character is used for the first lest level generated in this
50 way, and so on. If there are more levels than characters given here,
51 the list will be repeated.
52 Note that plain lists will keep the same bullets as the have in the
53 Org-mode file."
54 :group 'org-export-ascii
55 :type '(repeat character))
57 (defcustom org-export-ascii-links-to-notes t
58 "Non-nil means convert links to notes before the next headline.
59 When nil, the link will be exported in place. If the line becomes long
60 in this way, it will be wrapped."
61 :group 'org-export-ascii
62 :type 'boolean)
64 (defcustom org-export-ascii-table-keep-all-vertical-lines nil
65 "Non-nil means keep all vertical lines in ASCII tables.
66 When nil, vertical lines will be removed except for those needed
67 for column grouping."
68 :group 'org-export-ascii
69 :type 'boolean)
71 (defcustom org-export-ascii-table-widen-columns t
72 "Non-nil means widen narrowed columns for export.
73 When nil, narrowed columns will look in ASCII export just like in org-mode,
74 i.e. with \"=>\" as ellipsis."
75 :group 'org-export-ascii
76 :type 'boolean)
78 (defvar org-export-ascii-entities 'ascii
79 "The ascii representation to be used during ascii export.
80 Possible values are:
82 ascii Only use plain ASCII characters
83 latin1 Include Latin-1 character
84 utf8 Use all UTF-8 characters")
86 ;;; Hooks
88 (defvar org-export-ascii-final-hook nil
89 "Hook run at the end of ASCII export, in the new buffer.")
91 ;;; ASCII export
93 (defvar org-ascii-current-indentation nil) ; For communication
95 ;;;###autoload
96 (defun org-export-as-latin1 (&rest args)
97 "Like `org-export-as-ascii', use latin1 encoding for special symbols."
98 (interactive)
99 (org-export-as-encoding 'org-export-as-ascii (interactive-p)
100 'latin1 args))
102 ;;;###autoload
103 (defun org-export-as-latin1-to-buffer (&rest args)
104 "Like `org-export-as-ascii-to-buffer', use latin1 encoding for symbols."
105 (interactive)
106 (org-export-as-encoding 'org-export-as-ascii-to-buffer (interactive-p)
107 'latin1 args))
109 ;;;###autoload
110 (defun org-export-as-utf8 (&rest args)
111 "Like `org-export-as-ascii', use use encoding for special symbols."
112 (interactive)
113 (org-export-as-encoding 'org-export-as-ascii (interactive-p)
114 'utf8 args))
116 ;;;###autoload
117 (defun org-export-as-utf8-to-buffer (&rest args)
118 "Like `org-export-as-ascii-to-buffer', use utf8 encoding for symbols."
119 (interactive)
120 (org-export-as-encoding 'org-export-as-ascii-to-buffer (interactive-p)
121 'utf8 args))
123 (defun org-export-as-encoding (command interactivep encoding &rest args)
124 (let ((org-export-ascii-entities encoding))
125 (if interactivep
126 (call-interactively command)
127 (apply command args))))
130 ;;;###autoload
131 (defun org-export-as-ascii-to-buffer (arg)
132 "Call `org-export-as-ascii` with output to a temporary buffer.
133 No file is created. The prefix ARG is passed through to `org-export-as-ascii'."
134 (interactive "P")
135 (org-export-as-ascii arg nil nil "*Org ASCII Export*")
136 (when org-export-show-temporary-export-buffer
137 (switch-to-buffer-other-window "*Org ASCII Export*")))
139 ;;;###autoload
140 (defun org-replace-region-by-ascii (beg end)
141 "Assume the current region has org-mode syntax, and convert it to plain ASCII.
142 This can be used in any buffer. For example, you could write an
143 itemized list in org-mode syntax in a Mail buffer and then use this
144 command to convert it."
145 (interactive "r")
146 (let (reg ascii buf pop-up-frames)
147 (save-window-excursion
148 (if (org-mode-p)
149 (setq ascii (org-export-region-as-ascii
150 beg end t 'string))
151 (setq reg (buffer-substring beg end)
152 buf (get-buffer-create "*Org tmp*"))
153 (with-current-buffer buf
154 (erase-buffer)
155 (insert reg)
156 (org-mode)
157 (setq ascii (org-export-region-as-ascii
158 (point-min) (point-max) t 'string)))
159 (kill-buffer buf)))
160 (delete-region beg end)
161 (insert ascii)))
163 ;;;###autoload
164 (defun org-export-region-as-ascii (beg end &optional body-only buffer)
165 "Convert region from BEG to END in org-mode buffer to plain ASCII.
166 If prefix arg BODY-ONLY is set, omit file header, footer, and table of
167 contents, and only produce the region of converted text, useful for
168 cut-and-paste operations.
169 If BUFFER is a buffer or a string, use/create that buffer as a target
170 of the converted ASCII. If BUFFER is the symbol `string', return the
171 produced ASCII as a string and leave not buffer behind. For example,
172 a Lisp program could call this function in the following way:
174 (setq ascii (org-export-region-as-ascii beg end t 'string))
176 When called interactively, the output buffer is selected, and shown
177 in a window. A non-interactive call will only return the buffer."
178 (interactive "r\nP")
179 (when (interactive-p)
180 (setq buffer "*Org ASCII Export*"))
181 (let ((transient-mark-mode t) (zmacs-regions t)
182 ext-plist rtn)
183 (setq ext-plist (plist-put ext-plist :ignore-subtree-p t))
184 (goto-char end)
185 (set-mark (point)) ;; to activate the region
186 (goto-char beg)
187 (setq rtn (org-export-as-ascii
188 nil nil ext-plist
189 buffer body-only))
190 (if (fboundp 'deactivate-mark) (deactivate-mark))
191 (if (and (interactive-p) (bufferp rtn))
192 (switch-to-buffer-other-window rtn)
193 rtn)))
195 ;;;###autoload
196 (defun org-export-as-ascii (arg &optional hidden ext-plist
197 to-buffer body-only pub-dir)
198 "Export the outline as a pretty ASCII file.
199 If there is an active region, export only the region.
200 The prefix ARG specifies how many levels of the outline should become
201 underlined headlines, default is 3. Lower levels will become bulleted
202 lists. When HIDDEN is non-nil, don't display the ASCII buffer.
203 EXT-PLIST is a property list with external parameters overriding
204 org-mode's default settings, but still inferior to file-local
205 settings. When TO-BUFFER is non-nil, create a buffer with that
206 name and export to that buffer. If TO-BUFFER is the symbol
207 `string', don't leave any buffer behind but just return the
208 resulting ASCII as a string. When BODY-ONLY is set, don't produce
209 the file header and footer. When PUB-DIR is set, use this as the
210 publishing directory."
211 (interactive "P")
212 (run-hooks 'org-export-first-hook)
213 (setq-default org-todo-line-regexp org-todo-line-regexp)
214 (let* ((opt-plist (org-combine-plists (org-default-export-plist)
215 ext-plist
216 (org-infile-export-plist)))
217 (region-p (org-region-active-p))
218 (rbeg (and region-p (region-beginning)))
219 (rend (and region-p (region-end)))
220 (subtree-p
221 (if (plist-get opt-plist :ignore-subtree-p)
223 (when region-p
224 (save-excursion
225 (goto-char rbeg)
226 (and (org-at-heading-p)
227 (>= (org-end-of-subtree t t) rend))))))
228 (level-offset (if subtree-p
229 (save-excursion
230 (goto-char rbeg)
231 (+ (funcall outline-level)
232 (if org-odd-levels-only 1 0)))
234 (opt-plist (setq org-export-opt-plist
235 (if subtree-p
236 (org-export-add-subtree-options opt-plist rbeg)
237 opt-plist)))
238 ;; The following two are dynamically scoped into other
239 ;; routines below.
240 (org-current-export-dir
241 (or pub-dir (org-export-directory :html opt-plist)))
242 (org-current-export-file buffer-file-name)
243 (custom-times org-display-custom-times)
244 (org-ascii-current-indentation '(0 . 0))
245 (level 0) line txt
246 (umax nil)
247 (umax-toc nil)
248 (case-fold-search nil)
249 (bfname (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
250 (filename (if to-buffer
252 (concat (file-name-as-directory
253 (or pub-dir
254 (org-export-directory :ascii opt-plist)))
255 (file-name-sans-extension
256 (or (and subtree-p
257 (org-entry-get (region-beginning)
258 "EXPORT_FILE_NAME" t))
259 (file-name-nondirectory bfname)))
260 ".txt")))
261 (filename (and filename
262 (if (equal (file-truename filename)
263 (file-truename bfname))
264 (concat filename ".txt")
265 filename)))
266 (buffer (if to-buffer
267 (cond
268 ((eq to-buffer 'string)
269 (get-buffer-create "*Org ASCII Export*"))
270 (t (get-buffer-create to-buffer)))
271 (find-file-noselect filename)))
272 (org-levels-open (make-vector org-level-max nil))
273 (odd org-odd-levels-only)
274 (date (plist-get opt-plist :date))
275 (author (plist-get opt-plist :author))
276 (title (or (and subtree-p (org-export-get-title-from-subtree))
277 (plist-get opt-plist :title)
278 (and (not
279 (plist-get opt-plist :skip-before-1st-heading))
280 (org-export-grab-title-from-buffer))
281 (and (buffer-file-name)
282 (file-name-sans-extension
283 (file-name-nondirectory bfname)))
284 "UNTITLED"))
285 (email (plist-get opt-plist :email))
286 (language (plist-get opt-plist :language))
287 (quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
288 (todo nil)
289 (lang-words nil)
290 (region
291 (buffer-substring
292 (if (org-region-active-p) (region-beginning) (point-min))
293 (if (org-region-active-p) (region-end) (point-max))))
294 (lines (org-split-string
295 (org-export-preprocess-string
296 region
297 :for-backend 'ascii
298 :skip-before-1st-heading
299 (plist-get opt-plist :skip-before-1st-heading)
300 :drawers (plist-get opt-plist :drawers)
301 :tags (plist-get opt-plist :tags)
302 :priority (plist-get opt-plist :priority)
303 :footnotes (plist-get opt-plist :footnotes)
304 :timestamps (plist-get opt-plist :timestamps)
305 :todo-keywords (plist-get opt-plist :todo-keywords)
306 :verbatim-multiline t
307 :select-tags (plist-get opt-plist :select-tags)
308 :exclude-tags (plist-get opt-plist :exclude-tags)
309 :archived-trees
310 (plist-get opt-plist :archived-trees)
311 :add-text (plist-get opt-plist :text))
312 "\n"))
313 thetoc have-headings first-heading-pos
314 table-open table-buffer link-buffer link type path desc desc0 rpl wrap fnc)
315 (let ((inhibit-read-only t))
316 (org-unmodified
317 (remove-text-properties (point-min) (point-max)
318 '(:org-license-to-kill t))))
320 (setq org-min-level (org-get-min-level lines level-offset))
321 (setq org-last-level org-min-level)
322 (org-init-section-numbers)
323 (setq lang-words (or (assoc language org-export-language-setup)
324 (assoc "en" org-export-language-setup)))
325 (set-buffer buffer)
326 (erase-buffer)
327 (fundamental-mode)
328 (org-install-letbind)
329 ;; create local variables for all options, to make sure all called
330 ;; functions get the correct information
331 (mapc (lambda (x)
332 (set (make-local-variable (nth 2 x))
333 (plist-get opt-plist (car x))))
334 org-export-plist-vars)
335 (org-set-local 'org-odd-levels-only odd)
336 (setq umax (if arg (prefix-numeric-value arg)
337 org-export-headline-levels))
338 (setq umax-toc (if (integerp org-export-with-toc)
339 (min org-export-with-toc umax)
340 umax))
342 ;; File header
343 (unless body-only
344 (when (and title (not (string= "" title)))
345 (org-insert-centered title ?=)
346 (insert "\n"))
348 (if (and (or author email)
349 org-export-author-info)
350 (insert (concat (nth 1 lang-words) ": " (or author "")
351 (if (and org-export-email-info
352 email (string-match "\\S-" email))
353 (concat " <" email ">") "")
354 "\n")))
356 (cond
357 ((and date (string-match "%" date))
358 (setq date (format-time-string date)))
359 (date)
360 (t (setq date (format-time-string "%Y-%m-%d %T %Z"))))
362 (if (and date org-export-time-stamp-file)
363 (insert (concat (nth 2 lang-words) ": " date"\n")))
365 (unless (= (point) (point-min))
366 (insert "\n\n")))
368 (if (and org-export-with-toc (not body-only))
369 (progn
370 (push (concat (nth 3 lang-words) "\n") thetoc)
371 (push (concat (make-string (string-width (nth 3 lang-words)) ?=)
372 "\n") thetoc)
373 (mapc '(lambda (line)
374 (if (string-match org-todo-line-regexp
375 line)
376 ;; This is a headline
377 (progn
378 (setq have-headings t)
379 (setq level (- (match-end 1) (match-beginning 1)
380 level-offset)
381 level (org-tr-level level)
382 txt (match-string 3 line)
383 todo
384 (or (and org-export-mark-todo-in-toc
385 (match-beginning 2)
386 (not (member (match-string 2 line)
387 org-done-keywords)))
388 ; TODO, not DONE
389 (and org-export-mark-todo-in-toc
390 (= level umax-toc)
391 (org-search-todo-below
392 line lines level))))
393 (setq txt (org-html-expand-for-ascii txt))
395 (while (string-match org-bracket-link-regexp txt)
396 (setq txt
397 (replace-match
398 (match-string (if (match-end 2) 3 1) txt)
399 t t txt)))
401 (if (and (memq org-export-with-tags '(not-in-toc nil))
402 (string-match
403 (org-re "[ \t]+:[[:alnum:]_@#%:]+:[ \t]*$")
404 txt))
405 (setq txt (replace-match "" t t txt)))
406 (if (string-match quote-re0 txt)
407 (setq txt (replace-match "" t t txt)))
409 (if org-export-with-section-numbers
410 (setq txt (concat (org-section-number level)
411 " " txt)))
412 (if (<= level umax-toc)
413 (progn
414 (push
415 (concat
416 (make-string
417 (* (max 0 (- level org-min-level)) 4) ?\ )
418 (format (if todo "%s (*)\n" "%s\n") txt))
419 thetoc)
420 (setq org-last-level level))
421 ))))
422 lines)
423 (setq thetoc (if have-headings (nreverse thetoc) nil))))
425 (org-init-section-numbers)
426 (while (setq line (pop lines))
427 (when (and link-buffer (string-match "^\\*+ " line))
428 (org-export-ascii-push-links (nreverse link-buffer))
429 (setq link-buffer nil))
430 (setq wrap nil)
431 ;; Remove the quoted HTML tags.
432 (setq line (org-html-expand-for-ascii line))
433 ;; Replace links with the description when possible
434 (while (string-match org-bracket-link-analytic-regexp++ line)
435 (setq path (match-string 3 line)
436 link (concat (match-string 1 line) path)
437 type (match-string 2 line)
438 desc0 (match-string 5 line)
439 desc (or desc0 link))
440 (if (and (> (length link) 8)
441 (equal (substring link 0 8) "coderef:"))
442 (setq line (replace-match
443 (format (org-export-get-coderef-format (substring link 8) desc)
444 (cdr (assoc
445 (substring link 8)
446 org-export-code-refs)))
447 t t line))
448 (setq rpl (concat "[" desc "]"))
449 (if (functionp (setq fnc (nth 2 (assoc type org-link-protocols))))
450 (setq rpl (or (save-match-data
451 (funcall fnc (org-link-unescape path)
452 desc0 'ascii))
453 rpl))
454 (when (and desc0 (not (equal desc0 link)))
455 (if org-export-ascii-links-to-notes
456 (push (cons desc0 link) link-buffer)
457 (setq rpl (concat rpl " (" link ")")
458 wrap (+ (length line) (- (length (match-string 0 line)))
459 (length desc))))))
460 (setq line (replace-match rpl t t line))))
461 (when custom-times
462 (setq line (org-translate-time line)))
463 (cond
464 ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line)
465 ;; a Headline
466 (setq first-heading-pos (or first-heading-pos (point)))
467 (setq level (org-tr-level (- (match-end 1) (match-beginning 1)
468 level-offset))
469 txt (match-string 2 line))
470 (org-ascii-level-start level txt umax lines))
472 ((and org-export-with-tables
473 (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
474 (if (not table-open)
475 ;; New table starts
476 (setq table-open t table-buffer nil))
477 ;; Accumulate lines
478 (setq table-buffer (cons line table-buffer))
479 (when (or (not lines)
480 (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
481 (car lines))))
482 (setq table-open nil
483 table-buffer (nreverse table-buffer))
484 (insert (mapconcat
485 (lambda (x)
486 (org-fix-indentation x org-ascii-current-indentation))
487 (org-format-table-ascii table-buffer)
488 "\n") "\n")))
490 (if (string-match "^\\([ \t]*\\)\\([-+*][ \t]+\\)\\(.*?\\)\\( ::\\)"
491 line)
492 (setq line (replace-match "\\1\\3:" t nil line)))
493 (setq line (org-fix-indentation line org-ascii-current-indentation))
494 ;; Remove forced line breaks
495 (if (string-match "\\\\\\\\[ \t]*$" line)
496 (setq line (replace-match "" t t line)))
497 (if (and org-export-with-fixed-width
498 (string-match "^\\([ \t]*\\)\\(:\\( \\|$\\)\\)" line))
499 (setq line (replace-match "\\1" nil nil line))
500 (if wrap (setq line (org-export-ascii-wrap line wrap))))
501 (insert line "\n"))))
503 (org-export-ascii-push-links (nreverse link-buffer))
505 (normal-mode)
507 ;; insert the table of contents
508 (when thetoc
509 (goto-char (point-min))
510 (if (re-search-forward "^[ \t]*\\[TABLE-OF-CONTENTS\\][ \t]*$" nil t)
511 (progn
512 (goto-char (match-beginning 0))
513 (replace-match ""))
514 (goto-char first-heading-pos))
515 (mapc 'insert thetoc)
516 (or (looking-at "[ \t]*\n[ \t]*\n")
517 (insert "\n\n")))
519 ;; Convert whitespace place holders
520 (goto-char (point-min))
521 (let (beg end)
522 (while (setq beg (next-single-property-change (point) 'org-whitespace))
523 (setq end (next-single-property-change beg 'org-whitespace))
524 (goto-char beg)
525 (delete-region beg end)
526 (insert (make-string (- end beg) ?\ ))))
528 ;; remove display and invisible chars
529 (let (beg end)
530 (goto-char (point-min))
531 (while (setq beg (next-single-property-change (point) 'display))
532 (setq end (next-single-property-change beg 'display))
533 (delete-region beg end)
534 (goto-char beg)
535 (insert "=>"))
536 (goto-char (point-min))
537 (while (setq beg (next-single-property-change (point) 'org-cwidth))
538 (setq end (next-single-property-change beg 'org-cwidth))
539 (delete-region beg end)
540 (goto-char beg)))
541 (run-hooks 'org-export-ascii-final-hook)
542 (or to-buffer (save-buffer))
543 (goto-char (point-min))
544 (or (org-export-push-to-kill-ring "ASCII")
545 (message "Exporting... done"))
546 ;; Return the buffer or a string, according to how this function was called
547 (if (eq to-buffer 'string)
548 (prog1 (buffer-substring (point-min) (point-max))
549 (kill-buffer (current-buffer)))
550 (current-buffer))))
552 (defun org-export-ascii-preprocess (parameters)
553 "Do extra work for ASCII export."
555 ;; Realign tables to get rid of narrowing
556 (when org-export-ascii-table-widen-columns
557 (let ((org-table-do-narrow nil))
558 (goto-char (point-min))
559 (org-ascii-replace-entities)
560 (goto-char (point-min))
561 (org-table-map-tables
562 (lambda () (org-if-unprotected (org-table-align)))
563 'quietly)))
564 ;; Put quotes around verbatim text
565 (goto-char (point-min))
566 (while (re-search-forward org-verbatim-re nil t)
567 (org-if-unprotected-at (match-beginning 4)
568 (goto-char (match-end 2))
569 (backward-delete-char 1) (insert "'")
570 (goto-char (match-beginning 2))
571 (delete-char 1) (insert "`")
572 (goto-char (match-end 2))))
573 ;; Remove target markers
574 (goto-char (point-min))
575 (while (re-search-forward "<<<?\\([^<>]*\\)>>>?\\([ \t]*\\)" nil t)
576 (org-if-unprotected-at (match-beginning 1)
577 (replace-match "\\1\\2")))
578 ;; Remove list start counters
579 (goto-char (point-min))
580 (while (org-list-search-forward
581 "\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*" nil t)
582 (replace-match ""))
583 (remove-text-properties
584 (point-min) (point-max)
585 '(face nil font-lock-fontified nil font-lock-multiline nil line-prefix nil wrap-prefix nil)))
587 (defun org-html-expand-for-ascii (line)
588 "Handle quoted HTML for ASCII export."
589 (if org-export-html-expand
590 (while (string-match "@<[^<>\n]*>" line)
591 ;; We just remove the tags for now.
592 (setq line (replace-match "" nil nil line))))
593 line)
595 (defun org-ascii-replace-entities ()
596 "Replace entities with the ASCII representation."
597 (let (e)
598 (while (re-search-forward "\\\\\\([a-zA-Z]+[0-9]*\\)\\({}\\)?" nil t)
599 (org-if-unprotected-at (match-beginning 1)
600 (setq e (org-entity-get-representation (match-string 1)
601 org-export-ascii-entities))
602 (and e (replace-match e t t))))))
604 (defun org-export-ascii-wrap (line where)
605 "Wrap LINE at or before WHERE."
606 (let ((ind (org-get-indentation line))
607 pos)
608 (catch 'found
609 (loop for i from where downto (/ where 2) do
610 (and (equal (aref line i) ?\ )
611 (setq pos i)
612 (throw 'found t))))
613 (if pos
614 (concat (substring line 0 pos) "\n"
615 (make-string ind ?\ )
616 (substring line (1+ pos)))
617 line)))
619 (defun org-export-ascii-push-links (link-buffer)
620 "Push out links in the buffer."
621 (when link-buffer
622 ;; We still have links to push out.
623 (insert "\n")
624 (let ((ind ""))
625 (save-match-data
626 (if (save-excursion
627 (re-search-backward
628 "^\\(\\([ \t]*\\)\\|\\(\\*+ \\)\\)[^ \t\n]" nil t))
629 (setq ind (or (match-string 2)
630 (make-string (length (match-string 3)) ?\ )))))
631 (mapc (lambda (x) (insert ind "[" (car x) "]: " (cdr x) "\n"))
632 link-buffer))
633 (insert "\n")))
635 (defun org-ascii-level-start (level title umax &optional lines)
636 "Insert a new level in ASCII export."
637 (let (char (n (- level umax 1)) (ind 0))
638 (if (> level umax)
639 (progn
640 (insert (make-string (* 2 n) ?\ )
641 (char-to-string (nth (% n (length org-export-ascii-bullets))
642 org-export-ascii-bullets))
643 " " title "\n")
644 ;; find the indentation of the next non-empty line
645 (catch 'stop
646 (while lines
647 (if (string-match "^\\* " (car lines)) (throw 'stop nil))
648 (if (string-match "^\\([ \t]*\\)\\S-" (car lines))
649 (throw 'stop (setq ind (org-get-indentation (car lines)))))
650 (pop lines)))
651 (setq org-ascii-current-indentation (cons (* 2 (1+ n)) ind)))
652 (if (or (not (equal (char-before) ?\n))
653 (not (equal (char-before (1- (point))) ?\n)))
654 (insert "\n"))
655 (setq char (or (nth (1- level) org-export-ascii-underline)
656 (car (last org-export-ascii-underline))))
657 (unless org-export-with-tags
658 (if (string-match (org-re "[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") title)
659 (setq title (replace-match "" t t title))))
660 (if org-export-with-section-numbers
661 (setq title (concat (org-section-number level) " " title)))
662 (insert title "\n" (make-string (string-width title) char) "\n")
663 (setq org-ascii-current-indentation '(0 . 0)))))
665 (defun org-insert-centered (s &optional underline)
666 "Insert the string S centered and underline it with character UNDERLINE."
667 (let ((ind (max (/ (- fill-column (string-width s)) 2) 0)))
668 (insert (make-string ind ?\ ) s "\n")
669 (if underline
670 (insert (make-string ind ?\ )
671 (make-string (string-width s) underline)
672 "\n"))))
674 (defvar org-table-colgroup-info nil)
675 (defun org-format-table-ascii (lines)
676 "Format a table for ascii export."
677 (if (stringp lines)
678 (setq lines (org-split-string lines "\n")))
679 (if (not (string-match "^[ \t]*|" (car lines)))
680 ;; Table made by table.el - test for spanning
681 lines
683 ;; A normal org table
684 ;; Get rid of hlines at beginning and end
685 (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
686 (setq lines (nreverse lines))
687 (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
688 (setq lines (nreverse lines))
689 (when org-export-table-remove-special-lines
690 ;; Check if the table has a marking column. If yes remove the
691 ;; column and the special lines
692 (setq lines (org-table-clean-before-export lines)))
693 ;; Get rid of the vertical lines except for grouping
694 (if org-export-ascii-table-keep-all-vertical-lines
695 lines
696 (let ((vl (org-colgroup-info-to-vline-list org-table-colgroup-info))
697 rtn line vl1 start)
698 (while (setq line (pop lines))
699 (if (string-match org-table-hline-regexp line)
700 (and (string-match "|\\(.*\\)|" line)
701 (setq line (replace-match " \\1" t nil line)))
702 (setq start 0 vl1 vl)
703 (while (string-match "|" line start)
704 (setq start (match-end 0))
705 (or (pop vl1) (setq line (replace-match " " t t line)))))
706 (push line rtn))
707 (nreverse rtn)))))
709 (defun org-colgroup-info-to-vline-list (info)
710 (let (vl new last)
711 (while info
712 (setq last new new (pop info))
713 (if (or (memq last '(:end :startend))
714 (memq new '(:start :startend)))
715 (push t vl)
716 (push nil vl)))
717 (setq vl (nreverse vl))
718 (and vl (setcar vl nil))
719 vl))
721 (provide 'org-ascii)
723 ;; arch-tag: aa96f882-f477-4e13-86f5-70d43e7adf3c
724 ;;; org-ascii.el ends here