221a548
;; Generated autoloads from htmlize.el
221a548
;;
221a548
;; Copyright (C) 2009 Debarshi Ray <rishi@fedoraproject.org>
221a548
;;
221a548
;; All rights reserved.                                                        
221a548
;;
221a548
;; Copying and distribution of this file, with or without modification, are
221a548
;; permitted in any medium without royalty provided the copyright notice and
221a548
;; this notice are preserved.
221a548
221a548
(autoload (quote htmlize-buffer) "htmlize" "\
221a548
Convert BUFFER to HTML, preserving colors and decorations.
221a548
221a548
The generated HTML is available in a new buffer, which is returned.
221a548
When invoked interactively, the new buffer is selected in the current
221a548
window.  The title of the generated document will be set to the buffer's
221a548
file name or, if that's not available, to the buffer's name.
221a548
221a548
Note that htmlize doesn't fontify your buffers, it only uses the
221a548
decorations that are already present.  If you don't set up font-lock or
221a548
something else to fontify your buffers, the resulting HTML will be
221a548
plain.  Likewise, if you don't like the choice of colors, fix the mode
221a548
that created them, or simply alter the faces it uses.
221a548
221a548
\(fn &optional BUFFER)" t nil)
221a548
221a548
(autoload (quote htmlize-region) "htmlize" "\
221a548
Convert the region to HTML, preserving colors and decorations.
221a548
See `htmlize-buffer' for details.
221a548
221a548
\(fn BEG END)" t nil)
221a548
221a548
(autoload (quote htmlize-file) "htmlize" "\
221a548
Load FILE, fontify it, convert it to HTML, and save the result.
221a548
221a548
Contents of FILE are inserted into a temporary buffer, whose major mode
221a548
is set with `normal-mode' as appropriate for the file type.  The buffer
221a548
is subsequently fontified with `font-lock' and converted to HTML.  Note
221a548
that, unlike `htmlize-buffer', this function explicitly turns on
221a548
font-lock.  If a form of highlighting other than font-lock is desired,
221a548
please use `htmlize-buffer' directly on buffers so highlighted.
221a548
221a548
Buffers currently visiting FILE are unaffected by this function.  The
221a548
function does not change current buffer or move the point.
221a548
221a548
If TARGET is specified and names a directory, the resulting file will be
221a548
saved there instead of to FILE's directory.  If TARGET is specified and
221a548
does not name a directory, it will be used as output file name.
221a548
221a548
\(fn FILE &optional TARGET)" t nil)
221a548
221a548
(autoload (quote htmlize-many-files) "htmlize" "\
221a548
Convert FILES to HTML and save the corresponding HTML versions.
221a548
221a548
FILES should be a list of file names to convert.  This function calls
221a548
`htmlize-file' on each file; see that function for details.  When
221a548
invoked interactively, you are prompted for a list of files to convert,
221a548
terminated with RET.
221a548
221a548
If TARGET-DIRECTORY is specified, the HTML files will be saved to that
221a548
directory.  Normally, each HTML file is saved to the directory of the
221a548
corresponding source file.
221a548
221a548
\(fn FILES &optional TARGET-DIRECTORY)" t nil)
221a548
221a548
(autoload (quote htmlize-many-files-dired) "htmlize" "\
221a548
HTMLize dired-marked files.
221a548
221a548
\(fn ARG &optional TARGET-DIRECTORY)" t nil)