plantuml

package
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 21, 2026 License: MIT Imports: 6 Imported by: 0

README

plantuml

Table of contents

Summary

A tool to convert puml files to svg/png images.

Manual

$ notatio plantuml --help
NAME:
   notatio plantuml

USAGE:
   notatio plantuml [command options]

DESCRIPTION:
   A tool to convert puml files to svg/png images.

OPTIONS:
   --input-path value           input path, either a file to be converted or a directory to be scanned (default: ".")
   --output-format value        output format (svg or png) (default: "svg")
   --plantuml-limit-size value  (default: "4096")
   --plantuml-jar-path value    plantuml.jar file path (default: "/usr/local/lib/plantuml.jar")
   --recursive                  enable recursive directories scan (default: false)
   --help, -h                   show help

Usage

Coming soon…

Documentation

Index

Constants

This section is empty.

Variables

View Source
var App = cli.Command{
	Name:         "plantuml",
	Aliases:      nil,
	Usage:        "",
	UsageText:    "",
	Description:  "A tool to convert puml files to svg/png images.",
	ArgsUsage:    "",
	Category:     "",
	BashComplete: nil,
	Before: func(c *cli.Context) error {
		return nil
	},
	After:        nil,
	Action:       action,
	OnUsageError: nil,
	Flags: []cli.Flag{
		&cli.StringFlag{
			Name:     "input-path",
			Usage:    "input path, either a file to be converted or a directory to be scanned",
			Value:    ".",
			Required: false,
		},
		&cli.StringFlag{
			Name:     "output-format",
			Usage:    "output format (svg or png)",
			Value:    "svg",
			Required: false,
		},
		&cli.StringFlag{
			Name:     "plantuml-limit-size",
			Usage:    "",
			Value:    "4096",
			Required: false,
		},
		&cli.StringFlag{
			Name:     "plantuml-jar-path",
			Usage:    "plantuml.jar file path",
			Value:    "/usr/local/lib/plantuml.jar",
			Required: false,
		},
		&cli.BoolFlag{
			Name:     "recursive",
			Usage:    "enable recursive directories scan",
			Value:    false,
			Required: false,
		},
	},
	Subcommands: []*cli.Command{},
}

App main application.

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL