Skip to main content

Blockdiag preprocessor for Foliant doc maker. Supports blockdiag, seqdiag, actdiag, and nwdiag.

Project description

Blockdiag Preprocessor for Foliant

Blockdiag is a tool to generate diagrams from plain text. This preprocessor finds diagram definitions in the source and converts them into images on the fly during project build. It supports all Blockdiag flavors: blockdiag, seqdiag, actdiag, and nwdiag.

Installation

$ pip install foliantcontrib.blockdiag

Config

To enable the preprocessor, add blockdiag to preprocessors section in the project config:

preprocessors:
  - blockdiag

The preprocessor has a number of options:

preprocessors:
  - blockdiag:
      cache_dir: !path .diagramscache
      blockdiag_path: blockdiag
      seqdiag_path: seqdiag
      actdiag_path: actdiag
      nwdiag_path: nwdiag
      params:
        ...

cache_dir : Path to the directory with the generated diagrams. It can be a path relative to the project root or a global one; you can use ~/ shortcut.

>   **Note**
>
>   To save time during build, only new and modified diagrams are rendered. The generated images are cached and reused in future builds.

*_path : Paths to the blockdiag, seqdiag, actdiag, and nwdiag binaries. By default, it is assumed that you have these commands in PATH, but if they're installed in a custom place, you can define it here.

params : Params passed to the image generation commands (blockdiag, seqdiag, etc.). Params should be defined by their long names, with dashes replaced with underscores (e.g. --no-transparency becomes no_transparency); also, -T param is called format for readability:

    preprocessors:
      - blockdiag:
          params:
            antialias: true
            font: !path Anonymous_pro.ttf

To see the full list of params, run `blockdiag -h`.

Usage

To insert a diagram definition in your Markdown source, enclose it between <blockdiag>...</blockdiag>, <seqdiag>...</seqdiag>, <actdiag>...</actdiag>, or <nwdiag>...</nwdiag> tags (indentation inside tags is optional):

Here's a block diagram:

<blockdiag>
  blockdiag {
    A -> B -> C -> D;
    A -> E -> F -> G;
  }
</blockdiag>

Here's a sequence diagram:

<seqdiag>
  seqdiag {
    browser  -> webserver [label = "GET /index.html"];
    browser <-- webserver;
    browser  -> webserver [label = "POST /blog/comment"];
                webserver  -> database [label = "INSERT comment"];
                webserver <-- database;
    browser <-- webserver;
  }
</seqdiag>

To set a caption, use caption option:

Diagram with a caption:

<blockdiag caption="Sample diagram from the official site">
  blockdiag {
    A -> B -> C -> D;
    A -> E -> F -> G;
  }
</blockdiag>

You can override params values from the preprocessor config for each diagram:

By default, diagrams are in png. But this diagram is in svg:

<blockdiag caption="High-quality diagram" format="svg">
  blockdiag {
    A -> B -> C -> D;
    A -> E -> F -> G;
  }
</blockdiag>

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

foliantcontrib_blockdiag-1.0.8.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

foliantcontrib_blockdiag-1.0.8-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file foliantcontrib_blockdiag-1.0.8.tar.gz.

File metadata

File hashes

Hashes for foliantcontrib_blockdiag-1.0.8.tar.gz
Algorithm Hash digest
SHA256 ee8d203d407624a131ef6fbf6d815740bad3584a7f44ef4aa686e8ccce5833eb
MD5 f55045bd0506659b14b81d1c3005f945
BLAKE2b-256 17084dc2b8655476d1ebf5523817badb78ce5cd2edf1b2b3aaf00d2aa7f12c2d

See more details on using hashes here.

File details

Details for the file foliantcontrib_blockdiag-1.0.8-py3-none-any.whl.

File metadata

File hashes

Hashes for foliantcontrib_blockdiag-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 099c24ef9f084fb6f1f6db4b49de2cfb6182f40a6e1cdddefd2fc2544054bc1a
MD5 3333ac83f2a96d5a769277b24d27d5a2
BLAKE2b-256 cd2259183cbebfb9246c6b153a84127c916b16868a91d861c586ca197f7472df

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page