MkDocs Literate Nav

0.6.3 · active · verified Sat Apr 11

MkDocs plugin to specify the navigation in Markdown instead of YAML. The current version is 0.6.3. It follows an irregular release cadence, often tied to MkDocs compatibility or new features.

Warnings

Install

Quickstart

To use the plugin, enable it in your `mkdocs.yml` under the `plugins` section. By default, it looks for `SUMMARY.md` files in your documentation directories to define navigation. The example `SUMMARY.md` shows basic page links, nested sections, and a directory cross-link for 'API Reference' (assuming an `api/` directory with its own `SUMMARY.md` or inferred navigation).

plugins:
  - literate-nav: 
      nav_file: SUMMARY.md

# In your docs/SUMMARY.md file:
# * [Home](index.md)
# * About
#   * [Team](about/team.md)
#   * [History](about/history.md)
# * API Reference: api/

view raw JSON →