Emacs major modes (markdown and HTML) for authoring content in Jekyll. Handles syntax highlighting for YAML frontmatter, Liquid tags and pygmentized code snippets.
As this package depends on polymode, Emacs 24 is required.
jekyll-modes
is available from the MELPA package archive.
The package includes two modes, jekyll-markdown-mode
and
jekyll-html-mode
, which can be enabled as normal by adding the
following to you init file:
(add-to-list 'auto-mode-alist '("\\.md$" . jekyll-markdown-mode))
(add-to-list 'auto-mode-alist '("\\.html" . jekyll-html-mode))