marko

Compile Markdown into HTML with Marko instead of python-markdown

To install, run nikola plugin -i marko

Compiler plugin to support markdown via Marko.

More information about Marko

Suggested Configuration:

# In order to use Marko, you must either disable the original
# Markdown plugin, or use different file extensions for the two.

COMPILERS = {
    "marko": ['.md', '.mdown', '.markdown'],
}

POSTS = (
    ("posts/*.md", "posts", "post.tmpl"),
    ("posts/*.mdown", "posts", "post.tmpl"),
    ("posts/*.markdown", "posts", "post.tmpl"),
)
PAGES = (
    ("pages/*.md", "pages", "page.tmpl"),
    ("pages/*.mdown", "pages", "page.tmpl"),
    ("pages/*.markdown", "pages", "page.tmpl"),
)

Requirements:

  • marko[toc,codehilite] (Python package)

Issues? Questions?

You can report issues with this plugin and request help via GitHub Issues.