diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-10-16 19:01:36 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-10-16 19:01:48 -0700 |
commit | 4328d3dba2cc4f6089a8efb964c2539164d5db91 (patch) | |
tree | bfd17806c792194f2df52590e1879dd6056b78d7 /doc | |
parent | 8868b834022379f81268b387363cd6a3ff1214b4 (diff) | |
download | emacs-4328d3dba2cc4f6089a8efb964c2539164d5db91.tar.gz |
Fix quoting of data within htmlfontify doc
* doc/misc/htmlfontify.texi (Data Structures, Customization):
Fix quoting of data structures. A Lisp quote is needed only
when data appears within Lisp code.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/misc/htmlfontify.texi | 77 |
1 files changed, 38 insertions, 39 deletions
diff --git a/doc/misc/htmlfontify.texi b/doc/misc/htmlfontify.texi index b14f2d3b8fd..1b0afdd2e8d 100644 --- a/doc/misc/htmlfontify.texi +++ b/doc/misc/htmlfontify.texi @@ -1153,8 +1153,8 @@ An assoc with elements of the form @samp{(face-name style-name . style-string)}. The actual stylesheet for each page is derived from one of these. @lisp -'((default "default" . "@{ background: black; color: white@}") - (font-lock-string-face "string" . "@{ color: rgb(64,224,208) @}")) +((default "default" . "@{ background: black; color: white@}") + (font-lock-string-face "string" . "@{ color: rgb(64,224,208) @}")) @end lisp @item hfy-facemap-assoc @@ -1173,24 +1173,24 @@ dealt with (and therefore no longer care about) will be invalid at any time. @lisp -'((64820 . end) - (64744 . font-lock-comment-face) - (64736 . end) - (64722 . font-lock-string-face) - (64630 . end) - (64623 . font-lock-string-face) - (64449 . end) - ;; Big similar section elided. You get the idea. - (5459 . end) - (5431 . (:inherit font-lock-keyword-face :background "7e7e7e")) - (5431 . end) - (4285 . font-lock-constant-face) - (4285 . end) - (4221 . font-lock-comment-face) - (4221 . end) - (4197 . font-lock-constant-face) - (4197 . end) - (1 . font-lock-comment-face)) +((64820 . end) + (64744 . font-lock-comment-face) + (64736 . end) + (64722 . font-lock-string-face) + (64630 . end) + (64623 . font-lock-string-face) + (64449 . end) + ;; Big similar section elided. You get the idea. + (5459 . end) + (5431 . (:inherit font-lock-keyword-face :background "7e7e7e")) + (5431 . end) + (4285 . font-lock-constant-face) + (4285 . end) + (4221 . font-lock-comment-face) + (4221 . end) + (4197 . font-lock-constant-face) + (4197 . end) + (1 . font-lock-comment-face)) @end lisp @end table @@ -1301,36 +1301,35 @@ access to the face spec you would use if you were connected to an X display. Some valid class specification elements are: @lisp - '(class color) - '(class grayscale) - '(background dark) - '(background light) - '(type x-toolkit) - '(type tty) - '(type motif) - '(type lucid) + (class color) + (class grayscale) + (background dark) + (background light) + (type x-toolkit) + (type tty) + (type motif) + (type lucid) @end lisp Multiple values for a tag may be combined, to indicate that any one or more -of these values in the specification key constitutes a match, eg: +of these values in the specification key constitutes a match. For +example, @code{((class color grayscale) (type tty))} would match any of: -'((class color grayscale) (type tty)) would match any of: @lisp - '((class color)) - '((class grayscale)) - '((class color grayscale))) - '((class color foo)) - '((type tty)) - '((type tty) (class color)) + ((class color)) + ((class grayscale)) + ((class color grayscale))) + ((class color foo)) + ((type tty)) + ((type tty) (class color)) @end lisp -and so on. @item hfy-page-header @vindex hfy-page-header @anchor{hfy-page-header} Function called with two arguments (the filename relative to the top -level source directory being etag'd and fontified), and a string containing +level source directory being etagged and fontified), and a string containing the @samp{<style>@dots{}</style>} text to embed in the document---the string returned will be used as the header for the htmlfontified version of the source file. @@ -1355,7 +1354,7 @@ be large and take a long time to render or be difficult to navigate. @vindex hfy-find-cmd @anchor{hfy-find-cmd} -``find'' command used to harvest a list of files to attempt to fontify. +The ``find'' command used to harvest a list of files to attempt to fontify. @item hfy-extn @vindex hfy-extn |