This plugin add the possibility to write your pages and blog posts in Org format from Emacs Org-mode.
To generate your website, you don’t need Emacs, Pandoc or any other software.
This plugin only need orgco
python package.
You can install it with pip
:
pip install orgco
First, install this plugin in path know by pelican. Set pelican
variable PLUGIN_PATHS
in pelicanconf.py
if necessary.
Second, enable this plugin by adding his name to the pelican
variable PLUGINS
in pelicanconf.py
Exemple:
PLUGINS = ['org_python_reader']
With this plugin, you define settings with the ORGMODE
variable,
a dictionary.
Available settings:
code_highlight
:True
orFalse
, enable code highlight withorgco
. Default isTrue
.
Exemple of settings:
ORGMODE = {
'code_highlight': False,
}
Simply write content in Org format.
Org-mode is an Emacs mode for keeping notes, maintaining TODO lists, planning projects, and authoring documents with a fast and effective plain-text system.
With orgco you can convert Emacs’ orgmode to other formats.
Sébastien Gendre <[email protected]> Website