Skip to main content

Package that brings PlantUML into MkDocs

Project description

mkdocs-puml

PyPI version

mkdocs_puml is a fast and simple package that brings PUML diagrams into mkdocs documentation.

Install

Run the following command to install this package

pip install mkdocs_puml

How to use

To use puml with mkdocs, just add mkdocs_puml.extensions into markdown_extensions block of your mkdocs.yml file.

markdown_extensions:
    - mkdocs_puml.extensions:
        puml_url: https://www.plantuml.com/plantuml/
        num_workers: 5

Where

  • puml_url is URL to the plantuml service.
  • num_workers is max amount of concurrent workers that requests plantuml service. This variable should take the value of average amount of diagrams on a single page. This setting is set to 5 by default. NOTE that the extension processes each markdown page simultaneously; concurrent workers improves performance if you have more than 1 diagman per page.

Now, you can put your puml diagrams into your .md documentation. For example,

## PUML Diagram

```puml
@startuml
Bob -> Alice : hello
@enduml
```

At the build phase mkdocs will send request to puml_url and substitute your diagram with the svg image from response.

Run PlantUML service with Docker

It is possible to run plantuml/plantuml-server as a Docker container.

Add a new service to the docker-compose.yml file

version: "3"
services:
  puml:
    image: plantuml/plantuml-server
    ports:
      - '8080:8080'

Then substitute puml_url setting with the local's one in the mkdocs.yml file

markdown_extensions:
    - mkdocs_puml.extensions:
        puml_url: http://127.0.0.1:8080

Obviously, this approach works faster than using plantuml.com.

Standalone usage

You can use PlantUML converter on your own without mkdocs. The example below shows it.

from mkdocs_puml.puml import PlantUML

puml_url = "https://www.plantuml.com/plantuml"

diagram1 = """
@startuml
Bob -> Alice : hello
@enduml
"""

diagram2 = """
@startuml
Jon -> Sansa : hello
@enduml
"""

puml = PlantUML(puml_url, num_worker=2)
svg_for_diag1, svg_for_diag2 = puml.translate([diagram1, diagram2])

How it works

The package uses PlantUML as a service via HTTP. So, it encodes the diagram into a string that can be passed via URL. Then it sends GET request to the PlantUML service and receives svg image containing the diagram.

The markdown extension just parses .md documentation files and looks for

```puml

```

code blocks.

NOTE you must set puml keyword as an indicator that the plant uml is located in the block.

After the page is parsed, mkdocs_puml extension encodes diagrams and sends requests to PlantUML. After responses are received, the package substitutes puml diagrams with the svg images.

License

The project is licensed under MIT license.

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_puml-0.2.tar.gz (24.6 kB view hashes)

Uploaded Source

Built Distribution

mkdocs_puml-0.2-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

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