org-ascii.el 23 KB

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