Skip to main content

MkDocs plugin to render Diagrams files

Project description

mkdocs-diagrams

A plugin for the MkDocs documentation site generator which facilitates easy embedding of system architecture diagrams through the Diagrams project (view examples).

Installation

mkdocs-diagrams is available on PyPI. It can be installed through pip install mkdocs-diagrams or equivalent command with pipenv or poetry.

You'll also need to have the graphviz dot tool installed on your system. It's available as graphviz in most package managers.

Once installed, configure MkDocs to use this plugin by including diagrams in the plugins list in your mkdocs.yml. For example:

plugins:
  - diagrams
  - search

(If you don't have a plugins key in your config yet, you'll almost surely want to include search as well. It's a default plugin that will otherwise get deactivated.)

Usage

Warning: This plugin will execute .diagram.py files during build, as that is how Diagrams itself operates. Be careful using this plugin with untrusted input as this effectively allows arbitrary code execution.

Once installed, the diagrams plugin can be used by including diagrams files in your docs directory.

For example, create a file named example.diagrams.py with the following contents:

from diagrams import Cluster, Diagram
from diagrams.aws.compute import ECS, EKS, Lambda
from diagrams.aws.database import Redshift
from diagrams.aws.integration import SQS
from diagrams.aws.storage import S3


with Diagram("Event Processing", show=False):
    source = EKS("k8s source")

    with Cluster("Event Flows"):
        with Cluster("Event Workers"):
            workers = [ECS("worker1"),
                       ECS("worker2"),
                       ECS("worker3")]

        queue = SQS("event queue")

        with Cluster("Processing"):
            handlers = [Lambda("proc1"),
                        Lambda("proc2"),
                        Lambda("proc3")]

    store = S3("events store")
    dw = Redshift("analytics")

    source >> workers >> queue >> handlers
    handlers >> store
    handlers >> dw

When MkDocs is run (either with build or serve), this will result in a file named event_processing.png being created. Include this in your markdown files using regular image syntax: ![Event processing architecture](event_processing.png)

Configuration

This plugin supports a few config options, which can be set as follows:

plugins:
  - diagrams:
      file_extension: ".diagrams.py"
      max_workers: 5

file_extension

Sets the filename extension for diagram files. When mkdocs build or mkdocs serve is run, all files ending in this extension will be executed.

Default: .diagrams.py

max_workers

A pool of workers is used to render diagram files in parallel on multi-core systems. Setting this allows you to limit the number of workers to this amount.

Default: Dynamically chosen (os.cpu_count() + 2)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkdocs_diagrams_plugin-2.0.1.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

mkdocs_diagrams_plugin-2.0.1-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file mkdocs_diagrams_plugin-2.0.1.tar.gz.

File metadata

File hashes

Hashes for mkdocs_diagrams_plugin-2.0.1.tar.gz
Algorithm Hash digest
SHA256 4437c0c63351c76fb93de6676b16b3cab2dabb975bb02ce35f1395a95336e614
MD5 640670007a39dfdcd5b3d82695f46620
BLAKE2b-256 bdb09397d19f26c223dfcdf702be280c44cb0e1ba9bc226cb9a8a2604bf04216

See more details on using hashes here.

File details

Details for the file mkdocs_diagrams_plugin-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for mkdocs_diagrams_plugin-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9ac6f471e04544516d4301facc360dc5c8de4b494e8726e2c612267beb31e16a
MD5 76fdfb27f3b8568c46932940942dd128
BLAKE2b-256 c71c1e2086e174ef8bceca477ad6708c64c7c092cbb29b198dad30ef3faabf89

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page