Remove use of ‘if-let’ for Emacs 26+ compatibility
[pelican-mode.git] / README.md
index 8bbca6a..65c21d4 100644 (file)
--- a/README.md
+++ b/README.md
@@ -23,11 +23,12 @@ To enable by default on all text files in a Pelican site:
 (pelican-global-mode)
 ```
 
+
 Or with `use-package` and deferred loading:
 
 ``` emacs-lisp
 (use-package pelican-mode
-  :after (:any org rst markdown-mode adoc-mode)
+  :demand :after (:any org rst markdown-mode adoc-mode)
   :config
   (pelican-global-mode))
 ```
@@ -35,12 +36,12 @@ Or with `use-package` and deferred loading:
 Or, register `pelican-mode` or `pelican-mode-enable-if-site`
 as hook functions for more direct control.
 
-* `C-c P d` - Update the document’s date
-* `C-c P f` - Set a metadata field (title, category, etc.)
-* `C-c P h` - Generate HTML output for a site (equivalent to `make html`)
-* `C-c P n` - Insert a post or page header
-* `C-c P p` - Remove draft status from a post (i.e. publish it)
-* `C-c P u` - Upload a site using rsync (equivalent to `make rsync_upload`)
+* `C-c = d` - Update the document’s date
+* `C-c = f` - Set a metadata field (title, category, etc.)
+* `C-c = h` - Generate HTML output for a site (equivalent to `make html`)
+* `C-c = n` - Insert a post or page header
+* `C-c = p` - Remove draft status from a post (i.e. publish it)
+* `C-c = u` - Upload a site using rsync (equivalent to `make rsync_upload`)
 
 
 ## Troubleshooting