1 pelican-mode is an Emacs minor mode for editing articles and pages in
4 It's intended to be used alongside a major mode for the Pelican
5 document. Currently supported formats are Markdown, reStructuredText,
6 AsciiDoc, and Org. It also assumes you've set up Pelican with
7 `pelican-quickstart` or something like it. In particular it expects:
9 * The existence of `pelicanconf.py` and `Makefile` in some ancestor
11 * The first component of the path (e.g. `content`) after that
12 ancestor is irrelevant.
13 * If the next component is `pages`, that indicates a static page
14 rather than a dated post.
19 To enable by default on all text files in a Pelican site:
22 (require 'pelican-mode)
26 Or with `use-package` and deferred loading:
29 (use-package pelican-mode
30 :after (:any org rst markdown-mode adoc-mode)
32 (pelican-global-mode))
35 Or, register `pelican-mode` or `pelican-mode-enable-if-site`
36 as hook functions for more direct control.
38 * `C-c P d` - Update the document’s date
39 * `C-c P f` - Set a metadata field (title, category, etc.)
40 * `C-c P h` - Generate HTML output for a site (equivalent to `make html`)
41 * `C-c P n` - Insert a post or page header
42 * `C-c P p` - Remove draft status from a post (i.e. publish it)
43 * `C-c P u` - Upload a site using rsync (equivalent to `make rsync_upload`)
48 If the commands which invoke `make` can find the Makefile but can't
49 find `pelican`, your `exec-path` may not be set right. Try out
50 [exec-path-from-shell][].
55 This program is free software; you can redistribute it and/or modify
56 it under the terms of the GNU General Public License as published by
57 the Free Software Foundation, either version 3 of the License, or (at
58 your option) any later version.
60 [Pelican]: http://getpelican.com/
61 [markdown-mode]: http://jblevins.org/projects/markdown-mode/
62 [rst-mode]: http://docutils.sourceforge.net/docs/user/emacs.html
63 [exec-path-from-shell]: https://github.com/purcell/exec-path-from-shell