branch: elpa/htmlize commit 6264403243618ad0b5e53d5ac76df4722fdae221 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Capitalize htmlize when it is the first word in a sentence Likewise at the beginning of a heading. --- README.md | 6 +++--- htmlize.el | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 95eca27efe..e68ad55c46 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# htmlize --- Convert buffer text and decorations to HTML +# Htmlize — Convert buffer text and decorations to HTML [](https://melpa.org/#/htmlize) @@ -15,7 +15,7 @@ htmlize-many-files</kbd> allows you to htmlize any number of files in the same manner. <kbd>M-x htmlize-many-files-dired</kbd> does the same for files marked in a dired buffer. -htmlize supports three types of HTML output, selected by setting +Htmlize supports three types of HTML output, selected by setting `htmlize-output-type`: `css`, `inline-css` (optimized for code snippets), and `font` (simpler output, doesn't rely on CSS). See [`htmlize.el.html`][1] for an example of generated HTML. @@ -23,7 +23,7 @@ snippets), and `font` (simpler output, doesn't rely on CSS). See You can also use htmlize from your Emacs Lisp code. When called non-interactively, `htmlize-buffer` and `htmlize-region` will return the resulting HTML buffer, but will not change current -buffer or move the point. htmlize will do its best to work on +buffer or move the point. Htmlize will do its best to work on non-windowing Emacs sessions but the result will be limited to colors supported by the terminal. diff --git a/htmlize.el b/htmlize.el index 89363fdbcc..2f68c3eda0 100644 --- a/htmlize.el +++ b/htmlize.el @@ -38,7 +38,7 @@ ;; the same manner. `M-x htmlize-many-files-dired' does the same for ;; files marked in a dired buffer. -;; htmlize supports three types of HTML output, selected by setting +;; Htmlize supports three types of HTML output, selected by setting ;; `htmlize-output-type': `css', `inline-css', and `font'. In `css' ;; mode, htmlize uses cascading style sheets to specify colors; it ;; generates classes that correspond to Emacs faces and uses <span @@ -54,7 +54,7 @@ ;; You can also use htmlize from your Emacs Lisp code. When called ;; non-interactively, `htmlize-buffer' and `htmlize-region' will ;; return the resulting HTML buffer, but will not change current -;; buffer or move the point. htmlize will do its best to work on +;; buffer or move the point. Htmlize will do its best to work on ;; non-windowing Emacs sessions but the result will be limited to ;; colors supported by the terminal.