-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
2,150 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
;;; htmlize-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- | ||
;; Generated by the `loaddefs-generate' function. | ||
|
||
;; This file is part of GNU Emacs. | ||
|
||
;;; Code: | ||
|
||
(add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path))) | ||
|
||
|
||
|
||
;;; 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 (or if optional INTERACTIVE is non-nil), | ||
the new buffer is selected in the current window. The title of the | ||
generated document will be set to the buffer's file name or, if that | ||
is not available, to the buffer's name. | ||
Note that htmlize doesn't fontify your buffers, it only uses the | ||
decorations that are already present. If you don't set up font-lock or | ||
something else to fontify your buffers, the resulting HTML will be | ||
plain. Likewise, if you don't like the choice of colors, fix the mode | ||
that created them, or simply alter the faces it uses. | ||
(fn &optional BUFFER INTERACTIVE)" t) | ||
(autoload 'htmlize-region "htmlize" "\ | ||
Convert the region to HTML, preserving colors and decorations. | ||
See `htmlize-buffer' for details. | ||
(fn BEG END &optional INTERACTIVE)" t) | ||
(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 mode | ||
is set with `normal-mode' as appropriate for the file type. The buffer | ||
is subsequently fontified with `font-lock' and converted to HTML. Note | ||
that, unlike `htmlize-buffer', this function explicitly turns on | ||
font-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. The | ||
function does not change current buffer or move the point. | ||
If TARGET is specified and names a directory, the resulting file will be | ||
saved there instead of to FILE's directory. If TARGET is specified and | ||
does not name a directory, it will be used as output file name. | ||
(fn FILE &optional TARGET)" t) | ||
(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. When | ||
invoked 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 that | ||
directory. Normally, each HTML file is saved to the directory of the | ||
corresponding source file. | ||
(fn FILES &optional TARGET-DIRECTORY)" t) | ||
(autoload 'htmlize-many-files-dired "htmlize" "\ | ||
HTMLize dired-marked files. | ||
(fn ARG &optional TARGET-DIRECTORY)" t) | ||
(register-definition-prefixes "htmlize" '("htmlize-")) | ||
|
||
;;; End of scraped data | ||
|
||
(provide 'htmlize-autoloads) | ||
|
||
;; Local Variables: | ||
;; version-control: never | ||
;; no-byte-compile: t | ||
;; no-update-autoloads: t | ||
;; no-native-compile: t | ||
;; coding: utf-8-emacs-unix | ||
;; End: | ||
|
||
;;; htmlize-autoloads.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(define-package "htmlize" "20240212.1001" "Convert buffer text and decorations to HTML." | ||
'((emacs "25.1")) | ||
:commit "09d43dfa44899f194095bb3500a45ec5b34d59c6" :authors | ||
'(("Hrvoje Niksic" . "hniksic@gmail.com")) | ||
:maintainers | ||
'(("Hrvoje Niksic" . "hniksic@gmail.com")) | ||
:maintainer | ||
'("Hrvoje Niksic" . "hniksic@gmail.com") | ||
:keywords | ||
'("hypermedia" "extensions") | ||
:url "https://github.com/hniksic/emacs-htmlize") | ||
;; Local Variables: | ||
;; no-byte-compile: t | ||
;; End: |
Oops, something went wrong.