Avoid GFM until GitWeb on git.korewanetadesu.com supports it.
[pelican-mode.git] / README.md
index a0e13bd..74f8cc2 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-pelican-mode is an Emacs minor mode for editing pages and posts in
+pelican-mode is an Emacs minor mode for editing articles and pages in
 [Pelican][] sites.
 
 It's intended to be used alongside a major mode for the Pelican
@@ -21,6 +21,13 @@ To enable by default on all text files in a Pelican site:
     (require 'pelican-mode)
     (pelican-global-mode)
 
+Or with `use-package` and deferred loading:
+
+    (use-package pelican-mode
+      :after (:any org rst markdown-mode adoc-mode)
+      :config
+      (pelican-global-mode))
+
 Or, register `pelican-mode` or `pelican-mode-enable-if-site`
 as hook functions for more direct control.