|
|
;;; htmlize-autoloads.el --- automatically extracted autoloads;;;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "htmlize" "htmlize.el" (0 0 0 0));;; Generated autoloads from htmlize.el
(autoload 'htmlize-buffer "htmlize" "\
Convert BUFFER to HTML, preserving colors and decorations.
The generated HTML is available in a new buffer, which is returned.When invoked interactively, the new buffer is selected in the currentwindow. The title of the generated document will be set to the buffer'sfile name or, if that's not available, to the buffer's name.
Note that htmlize doesn't fontify your buffers, it only uses thedecorations that are already present. If you don't set up font-lock orsomething else to fontify your buffers, the resulting HTML will beplain. Likewise, if you don't like the choice of colors, fix the modethat created them, or simply alter the faces it uses.
\(fn &optional BUFFER)" t nil)
(autoload 'htmlize-region "htmlize" "\
Convert the region to HTML, preserving colors and decorations.See `htmlize-buffer' for details.
\(fn BEG END)" t nil)
(autoload 'htmlize-file "htmlize" "\
Load FILE, fontify it, convert it to HTML, and save the result.
Contents of FILE are inserted into a temporary buffer, whose major modeis set with `normal-mode' as appropriate for the file type. The bufferis subsequently fontified with `font-lock' and converted to HTML. Notethat, unlike `htmlize-buffer', this function explicitly turns onfont-lock. If a form of highlighting other than font-lock is desired,please use `htmlize-buffer' directly on buffers so highlighted.
Buffers currently visiting FILE are unaffected by this function. Thefunction does not change current buffer or move the point.
If TARGET is specified and names a directory, the resulting file will besaved there instead of to FILE's directory. If TARGET is specified anddoes not name a directory, it will be used as output file name.
\(fn FILE &optional TARGET)" t nil)
(autoload 'htmlize-many-files "htmlize" "\
Convert FILES to HTML and save the corresponding HTML versions.
FILES should be a list of file names to convert. This function calls`htmlize-file' on each file; see that function for details. Wheninvoked interactively, you are prompted for a list of files to convert,terminated with RET.
If TARGET-DIRECTORY is specified, the HTML files will be saved to thatdirectory. Normally, each HTML file is saved to the directory of thecorresponding source file.
\(fn FILES &optional TARGET-DIRECTORY)" t nil)
(autoload 'htmlize-many-files-dired "htmlize" "\
HTMLize dired-marked files.
\(fn ARG &optional TARGET-DIRECTORY)" t nil)
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "htmlize" '("htmlize-")))
;;;***;; Local Variables:;; version-control: never;; no-byte-compile: t;; no-update-autoloads: t;; coding: utf-8;; End:;;; htmlize-autoloads.el ends here
|