#plant-uml #links #encode #source-file #readme #link #preview

build plantaznik

CLI helper for managing PlantUML diagram sources and their previews in Markdown files

4 releases

0.1.3 Apr 3, 2023
0.1.2 Mar 17, 2023
0.1.1 Mar 17, 2023
0.1.0 Mar 15, 2023

#183 in Images

22 downloads per month

MIT license

26KB
479 lines

CLI helper for managing PlantUML diagram sources and their previews in Markdown files

⚡ Fast | 💪 Powerful file selection | ✅ Check mode for CI | 🎨 Customizable output | 🪝 Ideal for git hooks


Motivation

PlantUML is a great tool for managing software spec diagrams. Unless you are on GitLab, which has built-in support for interpreting PlantUML diagram sources you need to get hacky and inconvenient and even more so for private repos.

Plantaznik is a tool you can integrate into your workflow, that does the menial job for you: find referenced PlantUML sources, generate links and update in the Markdown docs.

Installation

$ cargo install plantaznik

Alternatively download a precompiled version from releases.

Getting started

In your Markdown files, include the following declarations in the comment:

<!-- plantaznik:./path/to/plantuml/source.plantuml -->
(this line will be replaced)

The declarations include a path to the source file, which is relative to the current file.

$ plantaznik README.md

All targeted input files (assume utf8 encoded markdown files with \n lines) are processed and the lines following the declerations are replaced by a Markdown syntax image, pointing to official PlantUML server with your source code encoded in the link.

Example of verbose output:

$ plantaznik README.md -vvv
[DEBUG] Replacement README.md:4
[DEBUG] - ![]()
[DEBUG] + ![](https://www.plantuml.com/plantuml/svg/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000)
[DEBUG] Replacement README.md:42 (no change)
[ERROR] Replacement README.md:93: Error accessing file: Read ./missing-diagram.plantuml (caused by: No such file or directory (os error 2))
[INFO ] File README.md processed (2/3 successful replacements)

Usage

CLI helper for managing PlantUML diagram sources and their previews in Markdown files

Usage: plantaznik [OPTIONS] <GLOB>

Arguments:
  <GLOB>  README files glob pattern to process

Options:
  -d, --dry-run     Dry run (skips file writes)
  -c, --check-only  Check (skips file writes and error if updates would take place)
  -v, --verbose...  More output per occurrence
  -q, --quiet...    Less output per occurrence
  -h, --help        Print help
  -V, --version     Print version

Advanced usage

  • Use globbing to target more files $ plantaznik '**/*.md'. The links are resolved relative to the current markdown file.
  • Increase verbosity with repeated v swtich $ plantaznik README.md -vvvv. Error (default), Warning, Info, Trace. Mute output with -q
  • --help to see usage and options

Preservation mode

Are you not happy with the default generated links? Run once and modify the generated line to your liking.

If the replacement line already contains a PlantUML link (duck-regex-typed), only the encoded source code will be replaced. Use this to your adventage by customizing the image URL placement, alt text or switching to PNG formats. The given line must not contain links to other diagrams.

When running for the first time, the following code is produced: ![](https://www.plantuml.com/plantuml/svg/ENCODED_SOURCE), here are some examples on how you can change the line and still get the code synchronization:

  • ![](https://www.plantuml.com/plantuml/png/ENCODED_SOURCE) - change the image to PNG
  • ![Diagram](https://www.plantuml.com/plantuml/svg/ENCODED_SOURCE) - add alt text
  • ![](https://mycustomserver.com/plantuml/svg/ENCODED_SOURCE) - change the server
  • <div><img src="https://www.plantuml.com/plantuml/png/ENCODED_SOURCE"></div> - use custom markup
  • [![](https://www.plantuml.com/plantuml/svg/ENCODED_SOURCE)](https://www.plantuml.com/plantuml/uml/ENCODED_SOURCE) - add hyperlink to edit on public server (uses the link twice)

Notes

  • Declarations Markdown codeblocks are automatically skipped

Roadmap

Currently, I am happy with the features and functionality, if there is something that you would like to see, feel free to open an issue!

Alternatives

Dependencies

~4.5–6.5MB
~113K SLoC