Metadata-Version: 2.1
Name: mkdocs-plantuml
Version: 0.1.0
Summary: Co-locate your plantuml source files and have them exported and linked to your techdocs
Home-page: https://github.com/NathanielWright/mkdocs-plantuml
Author: Nathaniel Wright
Author-email: nat.wright+github@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mkdocs

# Plantuml Techdoc embedded tool for MkDocs

Allows you to co-locate your plantuml and have it embedded into your tech docs

## How to use

First install the package

```
pip install mkdocs-plantuml
```

Enable in mkdocs

```yaml
plugins:
 - plantuml-colocator
```
 
 Once installed, link to plantuml in markdown

 ```markdown
 ![Alt Text](my-diagram.puml)
```

Place the .puml source file in the same directory as the markdown (co-located)


