Variable: enriched-translations

enriched-translations is a variable defined in enriched.el.gz.

Value

Large value
((face
  (bold-italic "bold" "italic")
  (bold "bold")
  (italic "italic")
  (underline "underline")
  (fixed "fixed")
  (excerpt "excerpt")
  (default)
  (nil enriched-encode-other-face))
 (left-margin
  (4 "indent"))
 (right-margin
  (4 "indentright"))
 (justification
  (none "nofill")
  (right "flushright")
  (left "flushleft")
  (full "flushboth")
  (center "center"))
 (PARAMETER
  (t "param"))
 (FUNCTION
  (enriched-decode-foreground "x-color")
  (enriched-decode-background "x-bg-color")
  (enriched-decode-display-prop "x-display")
  (enriched-decode-charset "x-charset"))
 (read-only
  (t "x-read-only"))
 (display
  (nil enriched-handle-display-prop))
 (charset
  (nil enriched-handle-charset-prop))
 (unknown
  (nil format-annotate-value)))

Documentation

List of definitions of text/enriched annotations.

See format-annotate-region and format-deannotate-region for the definition of this structure.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/enriched.el.gz
(defvar enriched-translations
  '((face          (bold-italic "bold" "italic")
		   (bold        "bold")
		   (italic      "italic")
		   (underline   "underline")
		   (fixed       "fixed")
		   (excerpt     "excerpt")
		   (default     )
		   (nil         enriched-encode-other-face))
    (left-margin   (4           "indent"))
    (right-margin  (4           "indentright"))
    (justification (none        "nofill")
		   (right       "flushright")
		   (left        "flushleft")
		   (full        "flushboth")
		   (center      "center"))
    (PARAMETER     (t           "param")) ; Argument of preceding annotation
    ;; The following are not part of the standard:
    (FUNCTION      (enriched-decode-foreground "x-color")
		   (enriched-decode-background "x-bg-color")
		   (enriched-decode-display-prop "x-display")
                   (enriched-decode-charset "x-charset"))
    (read-only     (t           "x-read-only"))
    (display	   (nil		enriched-handle-display-prop))
    (charset       (nil         enriched-handle-charset-prop))
    (unknown       (nil         format-annotate-value))
;   (font-size     (2           "bigger")       ; unimplemented
;		   (-2          "smaller"))
)
  "List of definitions of text/enriched annotations.
See `format-annotate-region' and `format-deannotate-region' for the definition
of this structure.")