1 ;;; ox-ascii.el --- ASCII Back-End for Org Export Engine
3 ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
5 ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
6 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; This library implements an ASCII back-end for Org generic exporter.
26 ;; See Org manual for more information.
30 (eval-when-compile (require 'cl
))
34 (declare-function aa2u
"ext:ascii-art-to-unicode" ())
38 ;; The following setting won't allow to modify preferred charset
39 ;; through a buffer keyword or an option item, but, since the property
40 ;; will appear in communication channel nonetheless, it allows to
41 ;; override `org-ascii-charset' variable on the fly by the ext-plist
44 ;; We also install a filter for headlines and sections, in order to
45 ;; control blank lines separating them in output string.
47 (org-export-define-backend 'ascii
48 '((bold . org-ascii-bold
)
49 (center-block . org-ascii-center-block
)
50 (clock . org-ascii-clock
)
51 (code . org-ascii-code
)
52 (comment .
(lambda (&rest args
) ""))
53 (comment-block .
(lambda (&rest args
) ""))
54 (drawer . org-ascii-drawer
)
55 (dynamic-block . org-ascii-dynamic-block
)
56 (entity . org-ascii-entity
)
57 (example-block . org-ascii-example-block
)
58 (export-block . org-ascii-export-block
)
59 (export-snippet . org-ascii-export-snippet
)
60 (fixed-width . org-ascii-fixed-width
)
61 (footnote-reference . org-ascii-footnote-reference
)
62 (headline . org-ascii-headline
)
63 (horizontal-rule . org-ascii-horizontal-rule
)
64 (inline-src-block . org-ascii-inline-src-block
)
65 (inlinetask . org-ascii-inlinetask
)
66 (inner-template . org-ascii-inner-template
)
67 (italic . org-ascii-italic
)
68 (item . org-ascii-item
)
69 (keyword . org-ascii-keyword
)
70 (latex-environment . org-ascii-latex-environment
)
71 (latex-fragment . org-ascii-latex-fragment
)
72 (line-break . org-ascii-line-break
)
73 (link . org-ascii-link
)
74 (node-property . org-ascii-node-property
)
75 (paragraph . org-ascii-paragraph
)
76 (plain-list . org-ascii-plain-list
)
77 (plain-text . org-ascii-plain-text
)
78 (planning . org-ascii-planning
)
79 (property-drawer . org-ascii-property-drawer
)
80 (quote-block . org-ascii-quote-block
)
81 (radio-target . org-ascii-radio-target
)
82 (section . org-ascii-section
)
83 (special-block . org-ascii-special-block
)
84 (src-block . org-ascii-src-block
)
85 (statistics-cookie . org-ascii-statistics-cookie
)
86 (strike-through . org-ascii-strike-through
)
87 (subscript . org-ascii-subscript
)
88 (superscript . org-ascii-superscript
)
89 (table . org-ascii-table
)
90 (table-cell . org-ascii-table-cell
)
91 (table-row . org-ascii-table-row
)
92 (target . org-ascii-target
)
93 (template . org-ascii-template
)
94 (timestamp . org-ascii-timestamp
)
95 (underline . org-ascii-underline
)
96 (verbatim . org-ascii-verbatim
)
97 (verse-block . org-ascii-verse-block
))
100 '(?t
"Export to Plain Text"
101 ((?A
"As ASCII buffer"
103 (org-ascii-export-as-ascii a s v b
'(:ascii-charset ascii
))))
106 (org-ascii-export-to-ascii a s v b
'(:ascii-charset ascii
))))
107 (?L
"As Latin1 buffer"
109 (org-ascii-export-as-ascii a s v b
'(:ascii-charset latin1
))))
112 (org-ascii-export-to-ascii a s v b
'(:ascii-charset latin1
))))
113 (?U
"As UTF-8 buffer"
115 (org-ascii-export-as-ascii a s v b
'(:ascii-charset utf-8
))))
118 (org-ascii-export-to-ascii a s v b
'(:ascii-charset utf-8
))))))
119 :filters-alist
'((:filter-headline . org-ascii-filter-headline-blank-lines
)
120 (:filter-parse-tree org-ascii-filter-paragraph-spacing
121 org-ascii-filter-comment-spacing
)
122 (:filter-section . org-ascii-filter-headline-blank-lines
))
124 '((:ascii-bullets nil nil org-ascii-bullets
)
125 (:ascii-caption-above nil nil org-ascii-caption-above
)
126 (:ascii-charset nil nil org-ascii-charset
)
127 (:ascii-global-margin nil nil org-ascii-global-margin
)
128 (:ascii-format-drawer-function nil nil org-ascii-format-drawer-function
)
129 (:ascii-format-inlinetask-function
130 nil nil org-ascii-format-inlinetask-function
)
131 (:ascii-headline-spacing nil nil org-ascii-headline-spacing
)
132 (:ascii-indented-line-width nil nil org-ascii-indented-line-width
)
133 (:ascii-inlinetask-width nil nil org-ascii-inlinetask-width
)
134 (:ascii-inner-margin nil nil org-ascii-inner-margin
)
135 (:ascii-links-to-notes nil nil org-ascii-links-to-notes
)
136 (:ascii-list-margin nil nil org-ascii-list-margin
)
137 (:ascii-paragraph-spacing nil nil org-ascii-paragraph-spacing
)
138 (:ascii-quote-margin nil nil org-ascii-quote-margin
)
139 (:ascii-table-keep-all-vertical-lines
140 nil nil org-ascii-table-keep-all-vertical-lines
)
141 (:ascii-table-use-ascii-art nil nil org-ascii-table-use-ascii-art
)
142 (:ascii-table-widen-columns nil nil org-ascii-table-widen-columns
)
143 (:ascii-text-width nil nil org-ascii-text-width
)
144 (:ascii-underline nil nil org-ascii-underline
)
145 (:ascii-verbatim-format nil nil org-ascii-verbatim-format
)))
149 ;;; User Configurable Variables
151 (defgroup org-export-ascii nil
152 "Options for exporting Org mode files to ASCII."
153 :tag
"Org Export ASCII"
156 (defcustom org-ascii-text-width
72
157 "Maximum width of exported text.
158 This number includes margin size, as set in
159 `org-ascii-global-margin'."
160 :group
'org-export-ascii
162 :package-version
'(Org .
"8.0")
165 (defcustom org-ascii-global-margin
0
166 "Width of the left margin, in number of characters."
167 :group
'org-export-ascii
169 :package-version
'(Org .
"8.0")
172 (defcustom org-ascii-inner-margin
2
173 "Width of the inner margin, in number of characters.
174 Inner margin is applied between each headline."
175 :group
'org-export-ascii
177 :package-version
'(Org .
"8.0")
180 (defcustom org-ascii-quote-margin
6
181 "Width of margin used for quoting text, in characters.
182 This margin is applied on both sides of the text."
183 :group
'org-export-ascii
185 :package-version
'(Org .
"8.0")
188 (defcustom org-ascii-list-margin
0
189 "Width of margin used for plain lists, in characters.
190 This margin applies to top level list only, not to its
192 :group
'org-export-ascii
194 :package-version
'(Org .
"8.3")
197 (defcustom org-ascii-inlinetask-width
30
198 "Width of inline tasks, in number of characters.
199 This number ignores any margin."
200 :group
'org-export-ascii
202 :package-version
'(Org .
"8.0")
205 (defcustom org-ascii-headline-spacing
'(1 .
2)
206 "Number of blank lines inserted around headlines.
208 This variable can be set to a cons cell. In that case, its car
209 represents the number of blank lines present before headline
210 contents whereas its cdr reflects the number of blank lines after
213 A nil value replicates the number of blank lines found in the
214 original Org buffer at the same place."
215 :group
'org-export-ascii
217 :package-version
'(Org .
"8.0")
219 (const :tag
"Replicate original spacing" nil
)
220 (cons :tag
"Set an uniform spacing"
221 (integer :tag
"Number of blank lines before contents")
222 (integer :tag
"Number of blank lines after contents"))))
224 (defcustom org-ascii-indented-line-width
'auto
225 "Additional indentation width for the first line in a paragraph.
226 If the value is an integer, indent the first line of each
227 paragraph by this width, unless it is located at the beginning of
228 a section, in which case indentation is removed from that line.
229 If it is the symbol `auto' preserve indentation from original
231 :group
'org-export-ascii
233 :package-version
'(Org .
"8.0")
235 (integer :tag
"Number of white spaces characters")
236 (const :tag
"Preserve original width" auto
)))
238 (defcustom org-ascii-paragraph-spacing
'auto
239 "Number of white lines between paragraphs.
240 If the value is an integer, add this number of blank lines
241 between contiguous paragraphs. If is it the symbol `auto', keep
242 the same number of blank lines as in the original document."
243 :group
'org-export-ascii
245 :package-version
'(Org .
"8.0")
247 (integer :tag
"Number of blank lines")
248 (const :tag
"Preserve original spacing" auto
)))
250 (defcustom org-ascii-charset
'ascii
251 "The charset allowed to represent various elements and objects.
253 `ascii' Only use plain ASCII characters
254 `latin1' Include Latin-1 characters
255 `utf-8' Use all UTF-8 characters"
256 :group
'org-export-ascii
258 :package-version
'(Org .
"8.0")
260 (const :tag
"ASCII" ascii
)
261 (const :tag
"Latin-1" latin1
)
262 (const :tag
"UTF-8" utf-8
)))
264 (defcustom org-ascii-underline
'((ascii ?
= ?~ ?-
)
266 (utf-8 ?═ ?─ ?╌ ?┄ ?┈
))
267 "Characters for underlining headings in ASCII export.
269 Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
270 and whose value is a list of characters.
272 For each supported charset, this variable associates a sequence
273 of underline characters. In a sequence, the characters will be
274 used in order for headlines level 1, 2, ... If no character is
275 available for a given level, the headline won't be underlined."
276 :group
'org-export-ascii
278 :package-version
'(Org .
"8.0")
280 (cons :tag
"Underline characters sequence"
281 (const :tag
"ASCII charset" ascii
)
283 (cons :tag
"Underline characters sequence"
284 (const :tag
"Latin-1 charset" latin1
)
286 (cons :tag
"Underline characters sequence"
287 (const :tag
"UTF-8 charset" utf-8
)
288 (repeat character
))))
290 (defcustom org-ascii-bullets
'((ascii ?
* ?
+ ?-
)
293 "Bullet characters for headlines converted to lists in ASCII export.
295 Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
296 and whose value is a list of characters.
298 The first character is used for the first level considered as low
299 level, and so on. If there are more levels than characters given
300 here, the list will be repeated.
302 Note that this variable doesn't affect plain lists
304 :group
'org-export-ascii
306 :package-version
'(Org .
"8.0")
308 (cons :tag
"Bullet characters for low level headlines"
309 (const :tag
"ASCII charset" ascii
)
311 (cons :tag
"Bullet characters for low level headlines"
312 (const :tag
"Latin-1 charset" latin1
)
314 (cons :tag
"Bullet characters for low level headlines"
315 (const :tag
"UTF-8 charset" utf-8
)
316 (repeat character
))))
318 (defcustom org-ascii-links-to-notes t
319 "Non-nil means convert links to notes before the next headline.
320 When nil, the link will be exported in place. If the line
321 becomes long in this way, it will be wrapped."
322 :group
'org-export-ascii
324 :package-version
'(Org .
"8.0")
327 (defcustom org-ascii-table-keep-all-vertical-lines nil
328 "Non-nil means keep all vertical lines in ASCII tables.
329 When nil, vertical lines will be removed except for those needed
330 for column grouping."
331 :group
'org-export-ascii
333 :package-version
'(Org .
"8.0")
336 (defcustom org-ascii-table-widen-columns t
337 "Non-nil means widen narrowed columns for export.
338 When nil, narrowed columns will look in ASCII export just like in
339 Org mode, i.e. with \"=>\" as ellipsis."
340 :group
'org-export-ascii
342 :package-version
'(Org .
"8.0")
345 (defcustom org-ascii-table-use-ascii-art nil
346 "Non-nil means table.el tables are turned into ascii-art.
348 It only makes sense when export charset is `utf-8'. It is nil by
349 default since it requires ascii-art-to-unicode.el package. You
350 can download it here:
352 http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el."
353 :group
'org-export-ascii
355 :package-version
'(Org .
"8.0")
358 (defcustom org-ascii-caption-above nil
359 "When non-nil, place caption string before the element.
360 Otherwise, place it right after it."
361 :group
'org-export-ascii
363 :package-version
'(Org .
"8.0")
366 (defcustom org-ascii-verbatim-format
"`%s'"
367 "Format string used for verbatim text and inline code."
368 :group
'org-export-ascii
370 :package-version
'(Org .
"8.0")
373 (defcustom org-ascii-format-drawer-function
374 (lambda (name contents width
) contents
)
375 "Function called to format a drawer in ASCII.
377 The function must accept three parameters:
378 NAME the drawer name, like \"LOGBOOK\"
379 CONTENTS the contents of the drawer.
380 WIDTH the text width within the drawer.
382 The function should return either the string to be exported or
383 nil to ignore the drawer.
385 The default value simply returns the value of CONTENTS."
386 :group
'org-export-ascii
388 :package-version
'(Org .
"8.0")
391 (defcustom org-ascii-format-inlinetask-function
392 'org-ascii-format-inlinetask-default
393 "Function called to format an inlinetask in ASCII.
395 The function must accept nine parameters:
396 TODO the todo keyword, as a string
397 TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
398 PRIORITY the inlinetask priority, as a string
399 NAME the inlinetask name, as a string.
400 TAGS the inlinetask tags, as a list of strings.
401 CONTENTS the contents of the inlinetask, as a string.
402 WIDTH the width of the inlinetask, as a number.
403 INLINETASK the inlinetask itself.
404 INFO the info channel.
406 The function should return either the string to be exported or
407 nil to ignore the inline task."
408 :group
'org-export-ascii
410 :package-version
'(Org .
"8.3")
415 ;;; Internal Functions
417 ;; Internal functions fall into three categories.
419 ;; The first one is about text formatting. The core functions are
420 ;; `org-ascii--current-text-width' and
421 ;; `org-ascii--current-justification', which determine, respectively,
422 ;; the current text width allowed to a given element and its expected
423 ;; justification. Once this information is known,
424 ;; `org-ascii--fill-string', `org-ascii--justify-lines',
425 ;; `org-ascii--justify-element' `org-ascii--box-string' and
426 ;; `org-ascii--indent-string' can operate on a given output string.
427 ;; In particular, justification happens at the regular (i.e.,
428 ;; non-greater) element level, which means that when the exporting
429 ;; process reaches a container (e.g., a center block) content are
430 ;; already justified.
432 ;; The second category contains functions handling elements listings,
433 ;; triggered by "#+TOC:" keyword. As such, `org-ascii--build-toc'
434 ;; returns a complete table of contents, `org-ascii--list-listings'
435 ;; returns a list of referenceable src-block elements, and
436 ;; `org-ascii--list-tables' does the same for table elements.
438 ;; The third category includes general helper functions.
439 ;; `org-ascii--build-title' creates the title for a given headline
440 ;; or inlinetask element. `org-ascii--build-caption' returns the
441 ;; caption string associated to a table or a src-block.
442 ;; `org-ascii--describe-links' creates notes about links for
443 ;; insertion at the end of a section. It uses
444 ;; `org-ascii--unique-links' to get the list of links to describe.
445 ;; Eventually, `org-ascii--translate' translates a string according
446 ;; to language and charset specification.
449 (defun org-ascii--fill-string (s text-width info
&optional justify
)
450 "Fill a string with specified text-width and return it.
452 S is the string being filled. TEXT-WIDTH is an integer
453 specifying maximum length of a line. INFO is the plist used as
454 a communication channel.
456 Optional argument JUSTIFY can specify any type of justification
457 among `left', `center', `right' or `full'. A nil value is
458 equivalent to `left'. For a justification that doesn't also fill
459 string, see `org-ascii--justify-lines' and
460 `org-ascii--justify-block'.
462 Return nil if S isn't a string."
464 (let ((double-space-p sentence-end-double-space
))
466 (let ((fill-column text-width
)
467 (use-hard-newlines t
)
468 (sentence-end-double-space double-space-p
))
469 (insert (if (plist-get info
:preserve-breaks
)
470 (replace-regexp-in-string "\n" hard-newline s
)
472 (fill-region (point-min) (point-max) justify
))
475 (defun org-ascii--justify-lines (s text-width how
)
476 "Justify all lines in string S.
477 TEXT-WIDTH is an integer specifying maximum length of a line.
478 HOW determines the type of justification: it can be `left',
479 `right', `full' or `center'."
482 (goto-char (point-min))
483 (let ((fill-column text-width
)
484 ;; Disable `adaptive-fill-mode' so it doesn't prevent
485 ;; filling lines matching `adaptive-fill-regexp'.
486 (adaptive-fill-mode nil
))
487 (while (< (point) (point-max))
488 (justify-current-line how
)
492 (defun org-ascii--justify-element (contents element info
)
493 "Justify CONTENTS of ELEMENT.
494 INFO is a plist used as a communication channel. Justification
495 is done according to the type of element. More accurately,
496 paragraphs are filled and other elements are justified as blocks,
497 that is according to the widest non blank line in CONTENTS."
498 (if (not (org-string-nw-p contents
)) contents
499 (let ((text-width (org-ascii--current-text-width element info
))
500 (how (org-ascii--current-justification element
)))
502 ((eq (org-element-type element
) 'paragraph
)
503 ;; Paragraphs are treated specially as they need to be filled.
504 (org-ascii--fill-string contents text-width info how
))
505 ((eq how
'left
) contents
)
508 (goto-char (point-min))
511 ;; Compute maximum width. Bail out if it is greater
512 ;; than page width, since no justification is
516 (unless (org-looking-at-p "[ \t]*$")
518 (let ((column (current-column)))
520 ((>= column text-width
) (throw 'exit contents
))
521 ((> column max-width
) (setq max-width column
)))))
523 ;; Justify every line according to TEXT-WIDTH and
525 (let ((offset (/ (- text-width max-width
)
526 (if (eq how
'right
) 1 2))))
527 (if (zerop offset
) (throw 'exit contents
)
529 (unless (org-looking-at-p "[ \t]*$")
530 (org-indent-to-column offset
))
532 (buffer-string))))))))
534 (defun org-ascii--indent-string (s width
)
535 "Indent string S by WIDTH white spaces.
536 Empty lines are not indented."
538 (replace-regexp-in-string
539 "\\(^\\)[ \t]*\\S-" (make-string width ?\s
) s nil nil
1)))
541 (defun org-ascii--box-string (s info
)
542 "Return string S with a partial box to its left.
543 INFO is a plist used as a communication channel."
544 (let ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
)))
545 (format (if utf8p
"┌────\n%s\n└────" ",----\n%s\n`----")
546 (replace-regexp-in-string
547 "^" (if utf8p
"│ " "| ")
548 ;; Remove last newline character.
549 (replace-regexp-in-string "\n[ \t]*\\'" "" s
)))))
551 (defun org-ascii--current-text-width (element info
)
552 "Return maximum text width for ELEMENT's contents.
553 INFO is a plist used as a communication channel."
554 (case (org-element-type element
)
555 ;; Elements with an absolute width: `headline' and `inlinetask'.
556 (inlinetask (plist-get info
:ascii-inlinetask-width
))
558 (- (plist-get info
:ascii-text-width
)
559 (let ((low-level-rank (org-export-low-level-p element info
)))
560 (if low-level-rank
(* low-level-rank
2)
561 (plist-get info
:ascii-global-margin
)))))
562 ;; Elements with a relative width: store maximum text width in
565 (let* ((genealogy (org-element-lineage element nil t
))
566 ;; Total width is determined by the presence, or not, of an
567 ;; inline task among ELEMENT parents.
569 (if (loop for parent in genealogy
570 thereis
(eq (org-element-type parent
) 'inlinetask
))
571 (plist-get info
:ascii-inlinetask-width
)
572 ;; No inlinetask: Remove global margin from text width.
573 (- (plist-get info
:ascii-text-width
)
574 (plist-get info
:ascii-global-margin
)
575 (let ((parent (org-export-get-parent-headline element
)))
576 ;; Inner margin doesn't apply to text before first
579 (let ((low-level-rank
580 (org-export-low-level-p parent info
)))
581 ;; Inner margin doesn't apply to contents of
582 ;; low level headlines, since they've got their
583 ;; own indentation mechanism.
584 (if low-level-rank
(* low-level-rank
2)
585 (plist-get info
:ascii-inner-margin
)))))))))
587 ;; Each `quote-block' and `verse-block' above narrows text
588 ;; width by twice the standard margin size.
589 (+ (* (loop for parent in genealogy
590 when
(memq (org-element-type parent
)
591 '(quote-block verse-block
))
593 2 (plist-get info
:ascii-quote-margin
))
594 ;; Apply list margin once per "top-level" plain-list
595 ;; containing current line
597 (dolist (e genealogy count
)
598 (and (eq (org-element-type e
) 'plain-list
)
599 (not (eq (org-element-type (org-export-get-parent e
))
602 (plist-get info
:ascii-list-margin
))
603 ;; Text width within a plain-list is restricted by
604 ;; indentation of current item. If that's the case,
605 ;; compute it with the help of `:structure' property from
606 ;; parent item, if any.
608 (if (eq (org-element-type element
) 'item
) element
609 (loop for parent in genealogy
610 when
(eq (org-element-type parent
) 'item
)
613 ;; Compute indentation offset of the current item,
614 ;; that is the sum of the difference between its
615 ;; indentation and the indentation of the top item in
616 ;; the list and current item bullet's length. Also
617 ;; remove checkbox length, and tag length (for
618 ;; description lists) or bullet length.
619 (let ((struct (org-element-property :structure item
))
620 (beg-item (org-element-property :begin item
)))
621 (+ (- (org-list-get-ind beg-item struct
)
623 (org-list-get-top-point struct
) struct
))
624 (string-width (or (org-ascii--checkbox item info
)
627 (let ((tag (org-element-property :tag item
)))
628 (if tag
(org-export-data tag info
)
629 (org-element-property :bullet item
))))))))))))))
631 (defun org-ascii--current-justification (element)
632 "Return expected justification for ELEMENT's contents.
633 Return value is a symbol among `left', `center', `right' and
636 (while (and (not justification
)
637 (setq element
(org-element-property :parent element
)))
638 (case (org-element-type element
)
639 (center-block (setq justification
'center
))
641 (let ((name (org-element-property :type element
)))
642 (cond ((string= name
"JUSTIFYRIGHT") (setq justification
'right
))
643 ((string= name
"JUSTIFYLEFT") (setq justification
'left
)))))))
644 (or justification
'left
)))
646 (defun org-ascii--build-title
647 (element info text-width
&optional underline notags toc
)
648 "Format ELEMENT title and return it.
650 ELEMENT is either an `headline' or `inlinetask' element. INFO is
651 a plist used as a communication channel. TEXT-WIDTH is an
652 integer representing the maximum length of a line.
654 When optional argument UNDERLINE is non-nil, underline title,
655 without the tags, according to `org-ascii-underline'
658 If optional argument NOTAGS is non-nil, no tags will be added to
661 When optional argument TOC is non-nil, use optional title if
662 possible. It doesn't apply to `inlinetask' elements."
663 (let* ((headlinep (eq (org-element-type element
) 'headline
))
665 ;; Numbering is specific to headlines.
666 (and headlinep
(org-export-numbered-headline-p element info
)
667 ;; All tests passed: build numbering string.
671 (org-export-get-headline-number element info
) ".")
676 (if (and toc headlinep
) (org-export-get-alt-title element info
)
677 (org-element-property :title element
))
680 (and (plist-get info
:with-todo-keywords
)
681 (let ((todo (org-element-property :todo-keyword element
)))
682 (and todo
(concat (org-export-data todo info
) " ")))))
683 (tags (and (not notags
)
684 (plist-get info
:with-tags
)
685 (let ((tag-list (org-export-get-tags element info
)))
688 (mapconcat 'identity tag-list
":"))))))
690 (and (plist-get info
:with-priority
)
691 (let ((char (org-element-property :priority element
)))
692 (and char
(format "(#%c) " char
)))))
693 (first-part (concat numbers todo priority text
)))
696 ;; Align tags, if any.
700 (max (- text-width
(1+ (string-width first-part
)))
701 (string-width tags
)))
703 ;; Maybe underline text, if ELEMENT type is `headline' and an
704 ;; underline character has been defined.
705 (when (and underline headlinep
)
707 (nth (1- (org-export-get-relative-level element info
))
708 (cdr (assq (plist-get info
:ascii-charset
)
709 (plist-get info
:ascii-underline
))))))
712 (make-string (/ (string-width first-part
)
713 (char-width under-char
))
716 (defun org-ascii--has-caption-p (element info
)
717 "Non-nil when ELEMENT has a caption affiliated keyword.
718 INFO is a plist used as a communication channel. This function
719 is meant to be used as a predicate for `org-export-get-ordinal'."
720 (org-element-property :caption element
))
722 (defun org-ascii--build-caption (element info
)
723 "Return caption string for ELEMENT, if applicable.
725 INFO is a plist used as a communication channel.
727 The caption string contains the sequence number of ELEMENT along
728 with its real caption. Return nil when ELEMENT has no affiliated
730 (let ((caption (org-export-get-caption element
)))
732 ;; Get sequence number of current src-block among every
733 ;; src-block with a caption.
735 (org-export-get-ordinal
736 element info nil
'org-ascii--has-caption-p
))
737 (title-fmt (org-ascii--translate
738 (case (org-element-type element
)
740 (src-block "Listing %d:"))
742 (org-ascii--fill-string
743 (concat (format title-fmt reference
)
745 (org-export-data caption info
))
746 (org-ascii--current-text-width element info
) info
)))))
748 (defun org-ascii--build-toc (info &optional n keyword local
)
749 "Return a table of contents.
751 INFO is a plist used as a communication channel.
753 Optional argument N, when non-nil, is an integer specifying the
756 Optional argument KEYWORD specifies the TOC keyword, if any, from
757 which the table of contents generation has been initiated.
759 When optional argument LOCAL is non-nil, build a table of
760 contents according to the current headline."
763 (let ((title (org-ascii--translate "Table of Contents" info
)))
767 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) ?─ ?_
))
770 (if keyword
(org-ascii--current-text-width keyword info
)
771 (- (plist-get info
:ascii-text-width
)
772 (plist-get info
:ascii-global-margin
)))))
775 (let* ((level (org-export-get-relative-level headline info
))
776 (indent (* (1- level
) 3)))
778 (unless (zerop indent
) (concat (make-string (1- indent
) ?.
) " "))
779 (org-ascii--build-title
780 headline info
(- text-width indent
) nil
781 (or (not (plist-get info
:with-tags
))
782 (eq (plist-get info
:with-tags
) 'not-in-toc
))
784 (org-export-collect-headlines info n keyword
) "\n"))))
786 (defun org-ascii--list-listings (keyword info
)
787 "Return a list of listings.
789 KEYWORD is the keyword that initiated the list of listings
790 generation. INFO is a plist used as a communication channel."
791 (let ((title (org-ascii--translate "List of Listings" info
)))
794 (make-string (string-width title
)
795 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) ?─ ?_
))
798 (if keyword
(org-ascii--current-text-width keyword info
)
799 (- (plist-get info
:ascii-text-width
)
800 (plist-get info
:ascii-global-margin
))))
801 ;; Use a counter instead of retrieving ordinal of each
806 ;; Store initial text so its length can be computed. This is
807 ;; used to properly align caption right to it in case of
808 ;; filling (like contents of a description list item).
810 (format (org-ascii--translate "Listing %d:" info
)
812 (initial-width (string-width initial-text
)))
816 (org-ascii--indent-string
817 (org-ascii--fill-string
818 ;; Use short name in priority, if available.
819 (let ((caption (or (org-export-get-caption src-block t
)
820 (org-export-get-caption src-block
))))
821 (org-export-data caption info
))
822 (- text-width initial-width
) info
)
824 (org-export-collect-listings info
) "\n")))))
826 (defun org-ascii--list-tables (keyword info
)
827 "Return a list of tables.
829 KEYWORD is the keyword that initiated the list of tables
830 generation. INFO is a plist used as a communication channel."
831 (let ((title (org-ascii--translate "List of Tables" info
)))
834 (make-string (string-width title
)
835 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) ?─ ?_
))
838 (if keyword
(org-ascii--current-text-width keyword info
)
839 (- (plist-get info
:ascii-text-width
)
840 (plist-get info
:ascii-global-margin
))))
841 ;; Use a counter instead of retrieving ordinal of each
846 ;; Store initial text so its length can be computed. This is
847 ;; used to properly align caption right to it in case of
848 ;; filling (like contents of a description list item).
850 (format (org-ascii--translate "Table %d:" info
)
852 (initial-width (string-width initial-text
)))
856 (org-ascii--indent-string
857 (org-ascii--fill-string
858 ;; Use short name in priority, if available.
859 (let ((caption (or (org-export-get-caption table t
)
860 (org-export-get-caption table
))))
861 (org-export-data caption info
))
862 (- text-width initial-width
) info
)
864 (org-export-collect-tables info
) "\n")))))
866 (defun org-ascii--unique-links (element info
)
867 "Return a list of unique link references in ELEMENT.
868 ELEMENT is either a headline element or a section element. INFO
869 is a plist used as a communication channel."
873 ;; Return LINK if it wasn't referenced so far, or nil.
874 ;; Update SEEN links along the way.
877 ;; Normalize description in footprints.
878 (cons (org-element-property :raw-link link
)
879 (let ((contents (org-element-contents link
)))
881 (replace-regexp-in-string
884 (org-element-interpret-data contents
))))))))
885 ;; Ignore LINK if it hasn't been translated already.
886 ;; It can happen if it is located in an affiliated
887 ;; keyword that was ignored.
888 (when (and (org-string-nw-p
889 (gethash link
(plist-get info
:exported-data
)))
890 (not (member footprint seen
)))
891 (push footprint seen
) link
)))))
892 ;; If at a section, find parent headline, if any, in order to
893 ;; count links that might be in the title.
895 (if (eq (org-element-type element
) 'headline
) element
896 (or (org-export-get-parent-headline element
) element
))))
897 ;; Get all links in HEADLINE.
898 (org-element-map headline
'link
899 (lambda (l) (funcall unique-link-p l
)) info nil nil t
)))
901 (defun org-ascii--describe-links (links width info
)
902 "Return a string describing a list of links.
904 LINKS is a list of link type objects, as returned by
905 `org-ascii--unique-links'. WIDTH is the text width allowed for
906 the output string. INFO is a plist used as a communication
910 (let ((type (org-element-property :type link
))
911 (anchor (let ((desc (org-element-contents link
)))
912 (if desc
(org-export-data desc info
)
913 (org-element-property :raw-link link
)))))
915 ;; Coderefs, radio links and fuzzy links are ignored.
916 ((member type
'("coderef" "radio" "fuzzy")) nil
)
917 ;; Id and custom-id links: Headlines refer to their numbering.
918 ((member type
'("custom-id" "id"))
919 (let ((dest (org-export-resolve-id-link link info
)))
921 (org-ascii--fill-string
925 (if (not dest
) (org-ascii--translate "Unknown reference" info
)
927 (org-ascii--translate "See section %s" info
)
928 (if (org-export-numbered-headline-p dest info
)
929 (mapconcat #'number-to-string
930 (org-export-get-headline-number dest info
) ".")
931 (org-export-data (org-element-property :title dest
) info
)))))
932 width info
) "\n\n")))
933 ;; Do not add a link that cannot be resolved and doesn't have
934 ;; any description: destination is already visible in the
936 ((not (org-element-contents link
)) nil
)
937 ;; Do not add a link already handled by custom export
939 ((let ((protocol (nth 2 (assoc type org-link-protocols
)))
940 (path (org-element-property :path link
)))
941 (and (functionp protocol
)
942 (funcall protocol
(org-link-unescape path
) anchor
'ascii
)))
946 (org-ascii--fill-string
947 (format "[%s] %s" anchor
(org-element-property :raw-link link
))
952 (defun org-ascii--checkbox (item info
)
953 "Return checkbox string for ITEM or nil.
954 INFO is a plist used as a communication channel."
955 (let ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
)))
956 (case (org-element-property :checkbox item
)
957 (on (if utf8p
"☑ " "[X] "))
958 (off (if utf8p
"☐ " "[ ] "))
959 (trans (if utf8p
"☒ " "[-] ")))))
965 (defun org-ascii-template--document-title (info)
966 "Return document title, as a string.
967 INFO is a plist used as a communication channel."
968 (let* ((text-width (plist-get info
:ascii-text-width
))
969 ;; Links in the title will not be resolved later, so we make
970 ;; sure their path is located right after them.
971 (info (org-combine-plists info
'(:ascii-links-to-notes nil
)))
972 (title (org-export-data (plist-get info
:title
) info
))
973 (author (and (plist-get info
:with-author
)
974 (let ((auth (plist-get info
:author
)))
975 (and auth
(org-export-data auth info
)))))
976 (email (and (plist-get info
:with-email
)
977 (org-export-data (plist-get info
:email
) info
)))
978 (date (and (plist-get info
:with-date
)
979 (org-export-data (org-export-get-date info
) info
))))
980 ;; There are two types of title blocks depending on the presence
981 ;; of a title to display.
982 (if (string= title
"")
983 ;; Title block without a title. DATE is positioned at the top
984 ;; right of the document, AUTHOR to the top left and EMAIL
987 ((and (org-string-nw-p date
) (org-string-nw-p author
))
990 (make-string (- text-width
(string-width date
) (string-width author
))
993 (when (org-string-nw-p email
) (concat "\n" email
))
995 ((and (org-string-nw-p date
) (org-string-nw-p email
))
998 (make-string (- text-width
(string-width date
) (string-width email
))
1001 ((org-string-nw-p date
)
1003 (org-ascii--justify-lines date text-width
'right
)
1005 ((and (org-string-nw-p author
) (org-string-nw-p email
))
1006 (concat author
"\n" email
"\n\n\n"))
1007 ((org-string-nw-p author
) (concat author
"\n\n\n"))
1008 ((org-string-nw-p email
) (concat email
"\n\n\n")))
1009 ;; Title block with a title. Document's TITLE, along with the
1010 ;; AUTHOR and its EMAIL are both overlined and an underlined,
1011 ;; centered. Date is just below, also centered.
1012 (let* ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
))
1013 ;; Format TITLE. It may be filled if it is too wide,
1014 ;; that is wider than the two thirds of the total width.
1015 (title-len (min (length title
) (/ (* 2 text-width
) 3)))
1016 (formatted-title (org-ascii--fill-string title title-len info
))
1019 (min (+ (max title-len
1020 (string-width (or author
""))
1021 (string-width (or email
"")))
1023 text-width
) (if utf8p ?━ ?_
))))
1024 (org-ascii--justify-lines
1027 (upcase formatted-title
)
1029 ((and (org-string-nw-p author
) (org-string-nw-p email
))
1030 (concat (if utf8p
"\n\n\n" "\n\n") author
"\n" email
))
1031 ((org-string-nw-p author
)
1032 (concat (if utf8p
"\n\n\n" "\n\n") author
))
1033 ((org-string-nw-p email
)
1034 (concat (if utf8p
"\n\n\n" "\n\n") email
)))
1036 (when (org-string-nw-p date
) (concat "\n\n\n" date
))
1037 "\n\n\n") text-width
'center
)))))
1039 (defun org-ascii-inner-template (contents info
)
1040 "Return complete document string after ASCII conversion.
1041 CONTENTS is the transcoded contents string. INFO is a plist
1042 holding export options."
1043 (org-element-normalize-string
1044 (let ((global-margin (plist-get info
:ascii-global-margin
)))
1045 (org-ascii--indent-string
1047 ;; 1. Document's body.
1049 ;; 2. Footnote definitions.
1050 (let ((definitions (org-export-collect-footnote-definitions
1051 (plist-get info
:parse-tree
) info
))
1052 ;; Insert full links right inside the footnote definition
1053 ;; as they have no chance to be inserted later.
1054 (info (org-combine-plists info
'(:ascii-links-to-notes nil
))))
1058 (let ((title (org-ascii--translate "Footnotes" info
)))
1062 (string-width title
)
1063 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) ?─ ?_
))))
1065 (let ((text-width (- (plist-get info
:ascii-text-width
)
1069 (let ((id (format "[%s] " (car ref
))))
1070 ;; Distinguish between inline definitions and
1071 ;; full-fledged definitions.
1073 (let ((def (nth 2 ref
)))
1074 (if (eq (org-element-type def
) 'org-data
)
1075 ;; Full-fledged definition: footnote ID is
1076 ;; inserted inside the first parsed
1077 ;; paragraph (FIRST), if any, to be sure
1078 ;; filling will take it into consideration.
1079 (let ((first (car (org-element-contents def
))))
1080 (if (not (eq (org-element-type first
) 'paragraph
))
1081 (concat id
"\n" (org-export-data def info
))
1082 (push id
(nthcdr 2 first
))
1083 (org-export-data def info
)))
1084 ;; Fill paragraph once footnote ID is inserted
1085 ;; in order to have a correct length for first
1087 (org-ascii--fill-string
1088 (concat id
(org-export-data def info
))
1089 text-width info
))))))
1090 definitions
"\n\n"))))))
1093 (defun org-ascii-template (contents info
)
1094 "Return complete document string after ASCII conversion.
1095 CONTENTS is the transcoded contents string. INFO is a plist
1096 holding export options."
1097 (let ((global-margin (plist-get info
:ascii-global-margin
)))
1099 ;; 1. Build title block.
1100 (org-ascii--indent-string
1101 (concat (org-ascii-template--document-title info
)
1102 ;; 2. Table of contents.
1103 (let ((depth (plist-get info
:with-toc
)))
1106 (org-ascii--build-toc info
(and (wholenump depth
) depth
))
1109 ;; 3. Document's body.
1111 ;; 4. Creator. Ignore `comment' value as there are no comments in
1112 ;; ASCII. Justify it to the bottom right.
1113 (org-ascii--indent-string
1114 (let ((creator-info (plist-get info
:with-creator
))
1115 (text-width (- (plist-get info
:ascii-text-width
) global-margin
)))
1116 (unless (or (not creator-info
) (eq creator-info
'comment
))
1119 (org-ascii--fill-string
1120 (plist-get info
:creator
) text-width info
'right
))))
1123 (defun org-ascii--translate (s info
)
1124 "Translate string S according to specified language and charset.
1125 INFO is a plist used as a communication channel."
1126 (let ((charset (intern (format ":%s" (plist-get info
:ascii-charset
)))))
1127 (org-export-translate s charset info
)))
1131 ;;; Transcode Functions
1135 (defun org-ascii-bold (bold contents info
)
1136 "Transcode BOLD from Org to ASCII.
1137 CONTENTS is the text with bold markup. INFO is a plist holding
1138 contextual information."
1139 (format "*%s*" contents
))
1144 (defun org-ascii-center-block (center-block contents info
)
1145 "Transcode a CENTER-BLOCK element from Org to ASCII.
1146 CONTENTS holds the contents of the block. INFO is a plist
1147 holding contextual information."
1148 ;; Center has already been taken care of at a lower level, so
1149 ;; there's nothing left to do.
1155 (defun org-ascii-clock (clock contents info
)
1156 "Transcode a CLOCK object from Org to ASCII.
1157 CONTENTS is nil. INFO is a plist holding contextual
1159 (org-ascii--justify-element
1160 (concat org-clock-string
" "
1161 (org-timestamp-translate (org-element-property :value clock
))
1162 (let ((time (org-element-property :duration clock
)))
1167 (org-split-string time
":"))))))
1173 (defun org-ascii-code (code contents info
)
1174 "Return a CODE object from Org to ASCII.
1175 CONTENTS is nil. INFO is a plist holding contextual
1177 (format (plist-get info
:ascii-verbatim-format
)
1178 (org-element-property :value code
)))
1183 (defun org-ascii-drawer (drawer contents info
)
1184 "Transcode a DRAWER element from Org to ASCII.
1185 CONTENTS holds the contents of the block. INFO is a plist
1186 holding contextual information."
1187 (let ((name (org-element-property :drawer-name drawer
))
1188 (width (org-ascii--current-text-width drawer info
)))
1189 (funcall (plist-get info
:ascii-format-drawer-function
)
1190 name contents width
)))
1195 (defun org-ascii-dynamic-block (dynamic-block contents info
)
1196 "Transcode a DYNAMIC-BLOCK element from Org to ASCII.
1197 CONTENTS holds the contents of the block. INFO is a plist
1198 holding contextual information."
1204 (defun org-ascii-entity (entity contents info
)
1205 "Transcode an ENTITY object from Org to ASCII.
1206 CONTENTS are the definition itself. INFO is a plist holding
1207 contextual information."
1208 (org-element-property
1209 (intern (concat ":" (symbol-name (plist-get info
:ascii-charset
))))
1215 (defun org-ascii-example-block (example-block contents info
)
1216 "Transcode a EXAMPLE-BLOCK element from Org to ASCII.
1217 CONTENTS is nil. INFO is a plist holding contextual information."
1218 (org-ascii--justify-element
1219 (org-ascii--box-string
1220 (org-export-format-code-default example-block info
) info
)
1221 example-block info
))
1226 (defun org-ascii-export-snippet (export-snippet contents info
)
1227 "Transcode a EXPORT-SNIPPET object from Org to ASCII.
1228 CONTENTS is nil. INFO is a plist holding contextual information."
1229 (when (eq (org-export-snippet-backend export-snippet
) 'ascii
)
1230 (org-element-property :value export-snippet
)))
1235 (defun org-ascii-export-block (export-block contents info
)
1236 "Transcode a EXPORT-BLOCK element from Org to ASCII.
1237 CONTENTS is nil. INFO is a plist holding contextual information."
1238 (when (string= (org-element-property :type export-block
) "ASCII")
1239 (org-ascii--justify-element
1240 (org-element-property :value export-block
) export-block info
)))
1245 (defun org-ascii-fixed-width (fixed-width contents info
)
1246 "Transcode a FIXED-WIDTH element from Org to ASCII.
1247 CONTENTS is nil. INFO is a plist holding contextual information."
1248 (org-ascii--justify-element
1249 (org-ascii--box-string
1250 (org-remove-indentation
1251 (org-element-property :value fixed-width
)) info
)
1255 ;;;; Footnote Definition
1257 ;; Footnote Definitions are ignored. They are compiled at the end of
1258 ;; the document, by `org-ascii-inner-template'.
1261 ;;;; Footnote Reference
1263 (defun org-ascii-footnote-reference (footnote-reference contents info
)
1264 "Transcode a FOOTNOTE-REFERENCE element from Org to ASCII.
1265 CONTENTS is nil. INFO is a plist holding contextual information."
1266 (format "[%s]" (org-export-get-footnote-number footnote-reference info
)))
1271 (defun org-ascii-headline (headline contents info
)
1272 "Transcode a HEADLINE element from Org to ASCII.
1273 CONTENTS holds the contents of the headline. INFO is a plist
1274 holding contextual information."
1275 ;; Don't export footnote section, which will be handled at the end
1277 (unless (org-element-property :footnote-section-p headline
)
1278 (let* ((low-level-rank (org-export-low-level-p headline info
))
1279 (width (org-ascii--current-text-width headline info
))
1280 ;; Blank lines between headline and its contents.
1281 ;; `org-ascii-headline-spacing', when set, overwrites
1282 ;; original buffer's spacing.
1285 (or (car (plist-get info
:ascii-headline-spacing
))
1286 (org-element-property :pre-blank headline
))
1288 ;; Even if HEADLINE has no section, there might be some
1289 ;; links in its title that we shouldn't forget to describe.
1291 (unless (or (eq (caar (org-element-contents headline
)) 'section
))
1292 (let ((title (org-element-property :title headline
)))
1294 (org-ascii--describe-links
1295 (org-ascii--unique-links title info
) width info
))))))
1296 ;; Deep subtree: export it as a list item.
1300 (let ((bullets (cdr (assq (plist-get info
:ascii-charset
)
1301 (plist-get info
:ascii-bullets
)))))
1303 (nth (mod (1- low-level-rank
) (length bullets
)) bullets
)))
1306 (org-ascii--build-title headline info width
) "\n"
1307 ;; Contents, indented by length of bullet.
1309 (org-ascii--indent-string
1311 (when (org-string-nw-p links
) (concat "\n\n" links
)))
1313 ;; Else: Standard headline.
1315 (org-ascii--build-title headline info width
'underline
)
1317 (concat (when (org-string-nw-p links
) links
) contents
))))))
1320 ;;;; Horizontal Rule
1322 (defun org-ascii-horizontal-rule (horizontal-rule contents info
)
1323 "Transcode an HORIZONTAL-RULE object from Org to ASCII.
1324 CONTENTS is nil. INFO is a plist holding contextual
1326 (let ((text-width (org-ascii--current-text-width horizontal-rule info
))
1328 (org-export-read-attribute :attr_ascii horizontal-rule
:width
)))
1329 (org-ascii--justify-lines
1330 (make-string (if (and spec-width
(string-match "^[0-9]+$" spec-width
))
1331 (string-to-number spec-width
)
1333 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) ?― ?-
))
1334 text-width
'center
)))
1337 ;;;; Inline Src Block
1339 (defun org-ascii-inline-src-block (inline-src-block contents info
)
1340 "Transcode an INLINE-SRC-BLOCK element from Org to ASCII.
1341 CONTENTS holds the contents of the item. INFO is a plist holding
1342 contextual information."
1343 (format (plist-get info
:ascii-verbatim-format
)
1344 (org-element-property :value inline-src-block
)))
1349 (defun org-ascii-format-inlinetask-default
1350 (todo type priority name tags contents width inlinetask info
)
1351 "Format an inline task element for ASCII export.
1352 See `org-ascii-format-inlinetask-function' for a description
1354 (let* ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
))
1355 (width (or width
(plist-get info
:ascii-inlinetask-width
))))
1356 (org-ascii--indent-string
1358 ;; Top line, with an additional blank line if not in UTF-8.
1359 (make-string width
(if utf8p ?━ ?_
)) "\n"
1360 (unless utf8p
(concat (make-string width ?
) "\n"))
1361 ;; Add title. Fill it if wider than inlinetask.
1362 (let ((title (org-ascii--build-title inlinetask info width
)))
1363 (if (<= (string-width title
) width
) title
1364 (org-ascii--fill-string title width info
)))
1366 ;; If CONTENTS is not empty, insert it along with
1368 (when (org-string-nw-p contents
)
1369 (concat (make-string width
(if utf8p ?─ ?-
)) "\n" contents
))
1371 (make-string width
(if utf8p ?━ ?_
)))
1372 ;; Flush the inlinetask to the right.
1373 (- (plist-get info
:ascii-text-width
) (plist-get info
:ascii-global-margin
)
1374 (if (not (org-export-get-parent-headline inlinetask
)) 0
1375 (plist-get info
:ascii-inner-margin
))
1376 (org-ascii--current-text-width inlinetask info
)))))
1378 (defun org-ascii-inlinetask (inlinetask contents info
)
1379 "Transcode an INLINETASK element from Org to ASCII.
1380 CONTENTS holds the contents of the block. INFO is a plist
1381 holding contextual information."
1382 (let ((width (org-ascii--current-text-width inlinetask info
)))
1383 (funcall (plist-get info
:ascii-format-inlinetask-function
)
1385 (and (plist-get info
:with-todo-keywords
)
1386 (let ((todo (org-element-property
1387 :todo-keyword inlinetask
)))
1388 (and todo
(org-export-data todo info
))))
1390 (org-element-property :todo-type inlinetask
)
1392 (and (plist-get info
:with-priority
)
1393 (org-element-property :priority inlinetask
))
1395 (org-export-data (org-element-property :title inlinetask
) info
)
1397 (and (plist-get info
:with-tags
)
1398 (org-element-property :tags inlinetask
))
1399 ;; contents and width
1400 contents width inlinetask info
)))
1405 (defun org-ascii-italic (italic contents info
)
1406 "Transcode italic from Org to ASCII.
1407 CONTENTS is the text with italic markup. INFO is a plist holding
1408 contextual information."
1409 (format "/%s/" contents
))
1414 (defun org-ascii-item (item contents info
)
1415 "Transcode an ITEM element from Org to ASCII.
1416 CONTENTS holds the contents of the item. INFO is a plist holding
1417 contextual information."
1418 (let* ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
))
1419 (checkbox (org-ascii--checkbox item info
))
1420 (list-type (org-element-property :type
(org-export-get-parent item
)))
1422 ;; First parent of ITEM is always the plain-list. Get
1423 ;; `:type' property from it.
1424 (org-list-bullet-string
1428 (org-export-data (org-element-property :tag item
) info
)
1431 ;; Return correct number for ITEM, paying attention to
1433 (let* ((struct (org-element-property :structure item
))
1434 (bul (org-element-property :bullet item
))
1435 (num (number-to-string
1436 (car (last (org-list-get-item-number
1437 (org-element-property :begin item
)
1439 (org-list-prevs-alist struct
)
1440 (org-list-parents-alist struct
)))))))
1441 (replace-regexp-in-string "[0-9]+" num bul
)))
1442 (t (let ((bul (org-element-property :bullet item
)))
1443 ;; Change bullets into more visible form if UTF-8 is active.
1445 (replace-regexp-in-string
1447 (replace-regexp-in-string
1449 (replace-regexp-in-string "*" "‣" bul
))))))))))
1452 (unless (eq list-type
'descriptive
) checkbox
)
1453 ;; Contents: Pay attention to indentation. Note: check-boxes are
1454 ;; already taken care of at the paragraph level so they don't
1455 ;; interfere with indentation.
1456 (let ((contents (org-ascii--indent-string contents
(string-width bullet
))))
1457 (if (eq (org-element-type (car (org-element-contents item
))) 'paragraph
)
1459 (concat "\n" contents
))))))
1464 (defun org-ascii-keyword (keyword contents info
)
1465 "Transcode a KEYWORD element from Org to ASCII.
1466 CONTENTS is nil. INFO is a plist holding contextual
1468 (let ((key (org-element-property :key keyword
))
1469 (value (org-element-property :value keyword
)))
1471 ((string= key
"ASCII") (org-ascii--justify-element value keyword info
))
1472 ((string= key
"TOC")
1473 (org-ascii--justify-element
1474 (let ((case-fold-search t
))
1476 ((org-string-match-p "\\<headlines\\>" value
)
1477 (let ((depth (and (string-match "\\<[0-9]+\\>" value
)
1478 (string-to-number (match-string 0 value
))))
1479 (localp (org-string-match-p "\\<local\\>" value
)))
1480 (org-ascii--build-toc info depth keyword localp
)))
1481 ((org-string-match-p "\\<tables\\>" value
)
1482 (org-ascii--list-tables keyword info
))
1483 ((org-string-match-p "\\<listings\\>" value
)
1484 (org-ascii--list-listings keyword info
))))
1488 ;;;; Latex Environment
1490 (defun org-ascii-latex-environment (latex-environment contents info
)
1491 "Transcode a LATEX-ENVIRONMENT element from Org to ASCII.
1492 CONTENTS is nil. INFO is a plist holding contextual
1494 (when (plist-get info
:with-latex
)
1495 (org-ascii--justify-element
1496 (org-remove-indentation (org-element-property :value latex-environment
))
1497 latex-environment info
)))
1502 (defun org-ascii-latex-fragment (latex-fragment contents info
)
1503 "Transcode a LATEX-FRAGMENT object from Org to ASCII.
1504 CONTENTS is nil. INFO is a plist holding contextual
1506 (when (plist-get info
:with-latex
)
1507 (org-element-property :value latex-fragment
)))
1512 (defun org-ascii-line-break (line-break contents info
)
1513 "Transcode a LINE-BREAK object from Org to ASCII.
1514 CONTENTS is nil. INFO is a plist holding contextual
1515 information." hard-newline
)
1520 (defun org-ascii-link (link desc info
)
1521 "Transcode a LINK object from Org to ASCII.
1523 DESC is the description part of the link, or the empty string.
1524 INFO is a plist holding contextual information."
1525 (let ((type (org-element-property :type link
)))
1527 ((org-export-custom-protocol-maybe link desc info
))
1528 ((string= type
"coderef")
1529 (let ((ref (org-element-property :path link
)))
1530 (format (org-export-get-coderef-format ref desc
)
1531 (org-export-resolve-coderef ref info
))))
1532 ;; Do not apply a special syntax on radio links. Though, use
1533 ;; transcoded target's contents as output.
1534 ((string= type
"radio") desc
)
1535 ;; Do not apply a special syntax on fuzzy links pointing to
1537 ((string= type
"fuzzy")
1538 (let ((destination (org-export-resolve-fuzzy-link link info
)))
1539 (if (org-string-nw-p desc
) desc
1542 (org-export-get-ordinal
1543 destination info nil
'org-ascii--has-caption-p
)))
1545 (if (atom number
) (number-to-string number
)
1546 (mapconcat #'number-to-string number
"."))
1547 ;; Unnumbered headline.
1548 (when (eq 'headline
(org-element-type destination
))
1551 (org-element-property :title destination
)
1554 (let ((raw-link (org-element-property :raw-link link
)))
1555 (if (not (org-string-nw-p desc
)) (format "[%s]" raw-link
)
1556 (concat (format "[%s]" desc
)
1557 (and (not (plist-get info
:ascii-links-to-notes
))
1558 (format " (%s)" raw-link
)))))))))
1561 ;;;; Node Properties
1563 (defun org-ascii-node-property (node-property contents info
)
1564 "Transcode a NODE-PROPERTY element from Org to ASCII.
1565 CONTENTS is nil. INFO is a plist holding contextual
1568 (org-element-property :key node-property
)
1569 (let ((value (org-element-property :value node-property
)))
1570 (if value
(concat " " value
) ""))))
1575 (defun org-ascii-paragraph (paragraph contents info
)
1576 "Transcode a PARAGRAPH element from Org to ASCII.
1577 CONTENTS is the contents of the paragraph, as a string. INFO is
1578 the plist used as a communication channel."
1579 (org-ascii--justify-element
1580 (let ((indented-line-width (plist-get info
:ascii-indented-line-width
)))
1581 (if (not (wholenump indented-line-width
)) contents
1583 ;; Do not indent first paragraph in a section.
1584 (unless (and (not (org-export-get-previous-element paragraph info
))
1585 (eq (org-element-type (org-export-get-parent paragraph
))
1587 (make-string indented-line-width ?\s
))
1588 (replace-regexp-in-string "\\`[ \t]+" "" contents
))))
1594 (defun org-ascii-plain-list (plain-list contents info
)
1595 "Transcode a PLAIN-LIST element from Org to ASCII.
1596 CONTENTS is the contents of the list. INFO is a plist holding
1597 contextual information."
1598 (let ((margin (plist-get info
:ascii-list-margin
)))
1599 (if (or (< margin
1)
1600 (eq (org-element-type (org-export-get-parent plain-list
)) 'item
))
1602 (org-ascii--indent-string contents margin
))))
1607 (defun org-ascii-plain-text (text info
)
1608 "Transcode a TEXT string from Org to ASCII.
1609 INFO is a plist used as a communication channel."
1610 (let ((utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
)))
1611 (when (and utf8p
(plist-get info
:with-smart-quotes
))
1612 (setq text
(org-export-activate-smart-quotes text
:utf-8 info
)))
1613 (if (not (plist-get info
:with-special-strings
)) text
1614 (setq text
(replace-regexp-in-string "\\\\-" "" text
))
1615 (if (not utf8p
) text
1616 ;; Usual replacements in utf-8 with proper option set.
1617 (replace-regexp-in-string
1619 (replace-regexp-in-string
1621 (replace-regexp-in-string "---" "—" text
)))))))
1626 (defun org-ascii-planning (planning contents info
)
1627 "Transcode a PLANNING element from Org to ASCII.
1628 CONTENTS is nil. INFO is a plist used as a communication
1630 (org-ascii--justify-element
1634 (list (let ((closed (org-element-property :closed planning
)))
1636 (concat org-closed-string
" "
1637 (org-timestamp-translate closed
))))
1638 (let ((deadline (org-element-property :deadline planning
)))
1640 (concat org-deadline-string
" "
1641 (org-timestamp-translate deadline
))))
1642 (let ((scheduled (org-element-property :scheduled planning
)))
1644 (concat org-scheduled-string
" "
1645 (org-timestamp-translate scheduled
))))))
1650 ;;;; Property Drawer
1652 (defun org-ascii-property-drawer (property-drawer contents info
)
1653 "Transcode a PROPERTY-DRAWER element from Org to ASCII.
1654 CONTENTS holds the contents of the drawer. INFO is a plist
1655 holding contextual information."
1656 (and (org-string-nw-p contents
)
1657 (org-ascii--justify-element contents property-drawer info
)))
1662 (defun org-ascii-quote-block (quote-block contents info
)
1663 "Transcode a QUOTE-BLOCK element from Org to ASCII.
1664 CONTENTS holds the contents of the block. INFO is a plist
1665 holding contextual information."
1666 (org-ascii--indent-string contents
(plist-get info
:ascii-quote-margin
)))
1671 (defun org-ascii-radio-target (radio-target contents info
)
1672 "Transcode a RADIO-TARGET object from Org to ASCII.
1673 CONTENTS is the contents of the target. INFO is a plist holding
1674 contextual information."
1680 (defun org-ascii-section (section contents info
)
1681 "Transcode a SECTION element from Org to ASCII.
1682 CONTENTS is the contents of the section. INFO is a plist holding
1683 contextual information."
1684 (org-ascii--indent-string
1687 (when (plist-get info
:ascii-links-to-notes
)
1688 ;; Add list of links at the end of SECTION.
1689 (let ((links (org-ascii--describe-links
1690 (org-ascii--unique-links section info
)
1691 (org-ascii--current-text-width section info
) info
)))
1692 ;; Separate list of links and section contents.
1693 (when (org-string-nw-p links
) (concat "\n\n" links
)))))
1694 ;; Do not apply inner margin if parent headline is low level.
1695 (let ((headline (org-export-get-parent-headline section
)))
1696 (if (or (not headline
) (org-export-low-level-p headline info
)) 0
1697 (plist-get info
:ascii-inner-margin
)))))
1702 (defun org-ascii-special-block (special-block contents info
)
1703 "Transcode a SPECIAL-BLOCK element from Org to ASCII.
1704 CONTENTS holds the contents of the block. INFO is a plist
1705 holding contextual information."
1706 ;; "JUSTIFYLEFT" and "JUSTFYRIGHT" have already been taken care of
1707 ;; at a lower level. There is no other special block type to
1714 (defun org-ascii-src-block (src-block contents info
)
1715 "Transcode a SRC-BLOCK element from Org to ASCII.
1716 CONTENTS holds the contents of the item. INFO is a plist holding
1717 contextual information."
1718 (let ((caption (org-ascii--build-caption src-block info
))
1719 (caption-above-p (plist-get info
:ascii-caption-above
))
1720 (code (org-export-format-code-default src-block info
)))
1721 (if (equal code
"") ""
1722 (org-ascii--justify-element
1724 (and caption caption-above-p
(concat caption
"\n"))
1725 (org-ascii--box-string code info
)
1726 (and caption
(not caption-above-p
) (concat "\n" caption
)))
1730 ;;;; Statistics Cookie
1732 (defun org-ascii-statistics-cookie (statistics-cookie contents info
)
1733 "Transcode a STATISTICS-COOKIE object from Org to ASCII.
1734 CONTENTS is nil. INFO is a plist holding contextual information."
1735 (org-element-property :value statistics-cookie
))
1740 (defun org-ascii-subscript (subscript contents info
)
1741 "Transcode a SUBSCRIPT object from Org to ASCII.
1742 CONTENTS is the contents of the object. INFO is a plist holding
1743 contextual information."
1744 (if (org-element-property :use-brackets-p subscript
)
1745 (format "_{%s}" contents
)
1746 (format "_%s" contents
)))
1751 (defun org-ascii-superscript (superscript contents info
)
1752 "Transcode a SUPERSCRIPT object from Org to ASCII.
1753 CONTENTS is the contents of the object. INFO is a plist holding
1754 contextual information."
1755 (if (org-element-property :use-brackets-p superscript
)
1756 (format "^{%s}" contents
)
1757 (format "^%s" contents
)))
1762 (defun org-ascii-strike-through (strike-through contents info
)
1763 "Transcode STRIKE-THROUGH from Org to ASCII.
1764 CONTENTS is text with strike-through markup. INFO is a plist
1765 holding contextual information."
1766 (format "+%s+" contents
))
1771 (defun org-ascii-table (table contents info
)
1772 "Transcode a TABLE element from Org to ASCII.
1773 CONTENTS is the contents of the table. INFO is a plist holding
1774 contextual information."
1775 (let ((caption (org-ascii--build-caption table info
))
1776 (caption-above-p (plist-get info
:ascii-caption-above
)))
1777 (org-ascii--justify-element
1779 ;; Possibly add a caption string above.
1780 (and caption caption-above-p
(concat caption
"\n"))
1781 ;; Insert table. Note: "table.el" tables are left unmodified.
1782 (cond ((eq (org-element-property :type table
) 'org
) contents
)
1783 ((and (plist-get info
:ascii-table-use-ascii-art
)
1784 (eq (plist-get info
:ascii-charset
) 'utf-8
)
1785 (require 'ascii-art-to-unicode nil t
))
1787 (insert (org-remove-indentation
1788 (org-element-property :value table
)))
1789 (goto-char (point-min))
1791 (goto-char (point-max))
1792 (skip-chars-backward " \r\t\n")
1793 (buffer-substring (point-min) (point))))
1794 (t (org-remove-indentation (org-element-property :value table
))))
1795 ;; Possible add a caption string below.
1796 (and (not caption-above-p
) caption
))
1802 (defun org-ascii--table-cell-width (table-cell info
)
1803 "Return width of TABLE-CELL.
1805 INFO is a plist used as a communication channel.
1807 Width of a cell is determined either by a width cookie in the
1808 same column as the cell, or by the maximum cell's length in that
1811 When `org-ascii-table-widen-columns' is non-nil, width cookies
1813 (let* ((row (org-export-get-parent table-cell
))
1814 (table (org-export-get-parent row
))
1815 (col (let ((cells (org-element-contents row
)))
1816 (- (length cells
) (length (memq table-cell cells
)))))
1818 (or (plist-get info
:ascii-table-cell-width-cache
)
1819 (plist-get (setq info
1820 (plist-put info
:ascii-table-cell-width-cache
1821 (make-hash-table :test
'equal
)))
1822 :ascii-table-cell-width-cache
)))
1823 (key (cons table col
))
1824 (widenp (plist-get info
:ascii-table-widen-columns
)))
1825 (or (gethash key cache
)
1828 (let ((cookie-width (org-export-table-cell-width table-cell info
)))
1829 (or (and (not widenp
) cookie-width
)
1830 (let ((contents-width
1831 (let ((max-width 0))
1832 (org-element-map table
'table-row
1837 (org-element-contents
1838 (elt (org-element-contents row
) col
))
1843 (cond ((not cookie-width
) contents-width
)
1844 (widenp (max cookie-width contents-width
))
1845 (t cookie-width
)))))
1848 (defun org-ascii-table-cell (table-cell contents info
)
1849 "Transcode a TABLE-CELL object from Org to ASCII.
1850 CONTENTS is the cell contents. INFO is a plist used as
1851 a communication channel."
1852 ;; Determine column width. When `org-ascii-table-widen-columns'
1853 ;; is nil and some width cookie has set it, use that value.
1854 ;; Otherwise, compute the maximum width among transcoded data of
1855 ;; each cell in the column.
1856 (let ((width (org-ascii--table-cell-width table-cell info
)))
1857 ;; When contents are too large, truncate them.
1858 (unless (or (plist-get info
:ascii-table-widen-columns
)
1859 (<= (string-width (or contents
"")) width
))
1860 (setq contents
(concat (substring contents
0 (- width
2)) "=>")))
1861 ;; Align contents correctly within the cell.
1862 (let* ((indent-tabs-mode nil
)
1865 (org-ascii--justify-lines
1867 (org-export-table-cell-alignment table-cell info
)))))
1870 (make-string (- width
(string-width (or data
""))) ?\s
))))
1872 (concat (format " %s " contents
)
1873 (when (memq 'right
(org-export-table-cell-borders table-cell info
))
1874 (if (eq (plist-get info
:ascii-charset
) 'utf-8
) "│" "|")))))
1879 (defun org-ascii-table-row (table-row contents info
)
1880 "Transcode a TABLE-ROW element from Org to ASCII.
1881 CONTENTS is the row contents. INFO is a plist used as
1882 a communication channel."
1883 (when (eq (org-element-property :type table-row
) 'standard
)
1886 (lambda (lcorner horiz vert rcorner
)
1890 (org-element-map table-row
'table-cell
1892 (let ((width (org-ascii--table-cell-width cell info
))
1893 (borders (org-export-table-cell-borders cell info
)))
1895 ;; In order to know if CELL starts the row, do
1896 ;; not compare it with the first cell in the
1897 ;; row as there might be a special column.
1898 ;; Instead, compare it with first exportable
1899 ;; cell, obtained with `org-element-map'.
1900 (when (and (memq 'left borders
)
1901 (eq (org-element-map table-row
'table-cell
1905 (make-string (+ 2 width
) (string-to-char horiz
))
1907 ((not (memq 'right borders
)) nil
)
1908 ((eq (car (last (org-element-contents table-row
))) cell
)
1912 (utf8p (eq (plist-get info
:ascii-charset
) 'utf-8
))
1913 (borders (org-export-table-cell-borders
1914 (org-element-map table-row
'table-cell
'identity info t
)
1917 ((and (memq 'top borders
) (or utf8p
(memq 'above borders
)))
1918 (if utf8p
(funcall build-hline
"┍" "━" "┯" "┑")
1919 (funcall build-hline
"+" "-" "+" "+")))
1920 ((memq 'above borders
)
1921 (if utf8p
(funcall build-hline
"├" "─" "┼" "┤")
1922 (funcall build-hline
"+" "-" "+" "+"))))
1923 (when (memq 'left borders
) (if utf8p
"│" "|"))
1925 (when (and (memq 'bottom borders
) (or utf8p
(memq 'below borders
)))
1926 (if utf8p
(funcall build-hline
"┕" "━" "┷" "┙")
1927 (funcall build-hline
"+" "-" "+" "+")))))))
1932 (defun org-ascii-timestamp (timestamp contents info
)
1933 "Transcode a TIMESTAMP object from Org to ASCII.
1934 CONTENTS is nil. INFO is a plist holding contextual information."
1935 (org-ascii-plain-text (org-timestamp-translate timestamp
) info
))
1940 (defun org-ascii-underline (underline contents info
)
1941 "Transcode UNDERLINE from Org to ASCII.
1942 CONTENTS is the text with underline markup. INFO is a plist
1943 holding contextual information."
1944 (format "_%s_" contents
))
1949 (defun org-ascii-verbatim (verbatim contents info
)
1950 "Return a VERBATIM object from Org to ASCII.
1951 CONTENTS is nil. INFO is a plist holding contextual information."
1952 (format (plist-get info
:ascii-verbatim-format
)
1953 (org-element-property :value verbatim
)))
1958 (defun org-ascii-verse-block (verse-block contents info
)
1959 "Transcode a VERSE-BLOCK element from Org to ASCII.
1960 CONTENTS is verse block contents. INFO is a plist holding
1961 contextual information."
1962 (let ((verse-width (org-ascii--current-text-width verse-block info
)))
1963 (org-ascii--indent-string
1964 (org-ascii--justify-element contents verse-block info
)
1965 (plist-get info
:ascii-quote-margin
))))
1971 (defun org-ascii-filter-headline-blank-lines (headline back-end info
)
1972 "Filter controlling number of blank lines after a headline.
1974 HEADLINE is a string representing a transcoded headline.
1975 BACK-END is symbol specifying back-end used for export. INFO is
1976 plist containing the communication channel.
1978 This function only applies to `ascii' back-end. See
1979 `org-ascii-headline-spacing' for information."
1980 (let ((headline-spacing (plist-get info
:ascii-headline-spacing
)))
1981 (if (not headline-spacing
) headline
1982 (let ((blanks (make-string (1+ (cdr headline-spacing
)) ?
\n)))
1983 (replace-regexp-in-string "\n\\(?:\n[ \t]*\\)*\\'" blanks headline
)))))
1985 (defun org-ascii-filter-paragraph-spacing (tree back-end info
)
1986 "Filter controlling number of blank lines between paragraphs.
1988 TREE is the parse tree. BACK-END is the symbol specifying
1989 back-end used for export. INFO is a plist used as
1990 a communication channel.
1992 See `org-ascii-paragraph-spacing' for information."
1993 (let ((paragraph-spacing (plist-get info
:ascii-paragraph-spacing
)))
1994 (when (wholenump paragraph-spacing
)
1995 (org-element-map tree
'paragraph
1997 (when (eq (org-element-type (org-export-get-next-element p info
))
1999 (org-element-put-property p
:post-blank paragraph-spacing
))))))
2002 (defun org-ascii-filter-comment-spacing (tree backend info
)
2003 "Filter removing blank lines between comments.
2004 TREE is the parse tree. BACK-END is the symbol specifying
2005 back-end used for export. INFO is a plist used as
2006 a communication channel."
2007 (org-element-map tree
'(comment comment-block
)
2009 (when (memq (org-element-type (org-export-get-next-element c info
))
2010 '(comment comment-block
))
2011 (org-element-put-property c
:post-blank
0))))
2016 ;;; End-user functions
2019 (defun org-ascii-export-as-ascii
2020 (&optional async subtreep visible-only body-only ext-plist
)
2021 "Export current buffer to a text buffer.
2023 If narrowing is active in the current buffer, only export its
2026 If a region is active, export that region.
2028 A non-nil optional argument ASYNC means the process should happen
2029 asynchronously. The resulting buffer should be accessible
2030 through the `org-export-stack' interface.
2032 When optional argument SUBTREEP is non-nil, export the sub-tree
2033 at point, extracting information from the headline properties
2036 When optional argument VISIBLE-ONLY is non-nil, don't export
2037 contents of hidden elements.
2039 When optional argument BODY-ONLY is non-nil, strip title and
2040 table of contents from output.
2042 EXT-PLIST, when provided, is a property list with external
2043 parameters overriding Org default settings, but still inferior to
2044 file-local settings.
2046 Export is done in a buffer named \"*Org ASCII Export*\", which
2047 will be displayed when `org-export-show-temporary-export-buffer'
2050 (org-export-to-buffer 'ascii
"*Org ASCII Export*"
2051 async subtreep visible-only body-only ext-plist
(lambda () (text-mode))))
2054 (defun org-ascii-export-to-ascii
2055 (&optional async subtreep visible-only body-only ext-plist
)
2056 "Export current buffer to a text file.
2058 If narrowing is active in the current buffer, only export its
2061 If a region is active, export that region.
2063 A non-nil optional argument ASYNC means the process should happen
2064 asynchronously. The resulting file should be accessible through
2065 the `org-export-stack' interface.
2067 When optional argument SUBTREEP is non-nil, export the sub-tree
2068 at point, extracting information from the headline properties
2071 When optional argument VISIBLE-ONLY is non-nil, don't export
2072 contents of hidden elements.
2074 When optional argument BODY-ONLY is non-nil, strip title and
2075 table of contents from output.
2077 EXT-PLIST, when provided, is a property list with external
2078 parameters overriding Org default settings, but still inferior to
2079 file-local settings.
2081 Return output file's name."
2083 (let ((file (org-export-output-file-name ".txt" subtreep
)))
2084 (org-export-to-file 'ascii file
2085 async subtreep visible-only body-only ext-plist
)))
2088 (defun org-ascii-publish-to-ascii (plist filename pub-dir
)
2089 "Publish an Org file to ASCII.
2091 FILENAME is the filename of the Org file to be published. PLIST
2092 is the property list for the given project. PUB-DIR is the
2093 publishing directory.
2095 Return output file name."
2097 'ascii filename
".txt" `(:ascii-charset ascii
,@plist
) pub-dir
))
2100 (defun org-ascii-publish-to-latin1 (plist filename pub-dir
)
2101 "Publish an Org file to Latin-1.
2103 FILENAME is the filename of the Org file to be published. PLIST
2104 is the property list for the given project. PUB-DIR is the
2105 publishing directory.
2107 Return output file name."
2109 'ascii filename
".txt" `(:ascii-charset latin1
,@plist
) pub-dir
))
2112 (defun org-ascii-publish-to-utf8 (plist filename pub-dir
)
2113 "Publish an org file to UTF-8.
2115 FILENAME is the filename of the Org file to be published. PLIST
2116 is the property list for the given project. PUB-DIR is the
2117 publishing directory.
2119 Return output file name."
2121 'ascii filename
".txt" `(:ascii-charset utf-8
,@plist
) pub-dir
))
2127 ;; generated-autoload-file: "org-loaddefs.el"
2128 ;; coding: utf-8-emacs
2131 ;;; ox-ascii.el ends here