visrep Plugin

Compatible with DokuWiki

No compatibility info given!

plugin Diagram representation using various engines

Last updated on
2016-06-01
Provides
Syntax
Repository
Source

This extension has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues.

Tagged with diagram, visualization

Graphiz must be installed and in $PATH or %PATH% for the graphviz engine to work.

sudo apt-get install graphviz

Usage

<visrep data-engine="graphviz">
  digraph G {
    main -> parse -> execute;
    main -> init;
    main -> cleanup;
    execute -> make_string;
    execute -> printf
    init -> make_string;
    main -> printf;
    execute -> compare;
  }
</visrep>

<visrep data-engine="blockdiag">
  A -> B -> C;
       B -> D;
</visrep>

<visrep data-engine="nwdiag">
  network dmz {
    web01;
    web02;
    stg01;
  }
  network internal {
    web01;
    web02;
    db01;
  }
</visrep>