Package that brings PlantUML to MkDocs


Keywords
markdown, mkdocs, plantuml, puml, uml, documentation, diagram, uml-diagrams, plugin, mkdocs-plugin, diagrams, inline
License
MIT
Install
pip install mkdocs_puml==1.0

Documentation

logo


mkdocs_puml is a fast and simple package that brings plantuml diagrams to MkDocs documentation.

Quick Start

Run the following command to install the package

pip install mkdocs_puml

After that, add plantuml plugin into plugins section of your mkdocs.yml file, in order to use PlantUML with MkDocs.

plugins:
  - plantuml:
      puml_url: https://www.plantuml.com/plantuml/

Not include PlantUML code fences with puml keyword to your documentation, such as

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

That's it, mkdocs_puml will automatically build SVG diagrams from the code 🎉

For more information, please refer to the documentation.

License

This project is licensed under MIT license.