Klimi's new dotfiles with stow.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

82 linhas
3.0 KiB

há 4 anos
  1. ;;; htmlize-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "htmlize" "htmlize.el" (0 0 0 0))
  7. ;;; Generated autoloads from htmlize.el
  8. (autoload 'htmlize-buffer "htmlize" "\
  9. Convert BUFFER to HTML, preserving colors and decorations.
  10. The generated HTML is available in a new buffer, which is returned.
  11. When invoked interactively, the new buffer is selected in the current
  12. window. The title of the generated document will be set to the buffer's
  13. file name or, if that's not available, to the buffer's name.
  14. Note that htmlize doesn't fontify your buffers, it only uses the
  15. decorations that are already present. If you don't set up font-lock or
  16. something else to fontify your buffers, the resulting HTML will be
  17. plain. Likewise, if you don't like the choice of colors, fix the mode
  18. that created them, or simply alter the faces it uses.
  19. \(fn &optional BUFFER)" t nil)
  20. (autoload 'htmlize-region "htmlize" "\
  21. Convert the region to HTML, preserving colors and decorations.
  22. See `htmlize-buffer' for details.
  23. \(fn BEG END)" t nil)
  24. (autoload 'htmlize-file "htmlize" "\
  25. Load FILE, fontify it, convert it to HTML, and save the result.
  26. Contents of FILE are inserted into a temporary buffer, whose major mode
  27. is set with `normal-mode' as appropriate for the file type. The buffer
  28. is subsequently fontified with `font-lock' and converted to HTML. Note
  29. that, unlike `htmlize-buffer', this function explicitly turns on
  30. font-lock. If a form of highlighting other than font-lock is desired,
  31. please use `htmlize-buffer' directly on buffers so highlighted.
  32. Buffers currently visiting FILE are unaffected by this function. The
  33. function does not change current buffer or move the point.
  34. If TARGET is specified and names a directory, the resulting file will be
  35. saved there instead of to FILE's directory. If TARGET is specified and
  36. does not name a directory, it will be used as output file name.
  37. \(fn FILE &optional TARGET)" t nil)
  38. (autoload 'htmlize-many-files "htmlize" "\
  39. Convert FILES to HTML and save the corresponding HTML versions.
  40. FILES should be a list of file names to convert. This function calls
  41. `htmlize-file' on each file; see that function for details. When
  42. invoked interactively, you are prompted for a list of files to convert,
  43. terminated with RET.
  44. If TARGET-DIRECTORY is specified, the HTML files will be saved to that
  45. directory. Normally, each HTML file is saved to the directory of the
  46. corresponding source file.
  47. \(fn FILES &optional TARGET-DIRECTORY)" t nil)
  48. (autoload 'htmlize-many-files-dired "htmlize" "\
  49. HTMLize dired-marked files.
  50. \(fn ARG &optional TARGET-DIRECTORY)" t nil)
  51. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "htmlize" '("htmlize-")))
  52. ;;;***
  53. ;; Local Variables:
  54. ;; version-control: never
  55. ;; no-byte-compile: t
  56. ;; no-update-autoloads: t
  57. ;; coding: utf-8
  58. ;; End:
  59. ;;; htmlize-autoloads.el ends here