Skip to content

8.2.6

Compare
Choose a tag to compare
@knsv knsv released this 01 Sep 11:42
· 8480 commits to master since this release

Features

Allowing chaining of nodes in flowcharts.

graph TB
  a --> b --> c

Bug fixes:

  • Fix for numbers in nodes in subgraphs as per #918
  • Making it possieble to use underscore in labels in vertices as per #915
  • Better handling of nodes whos ids are starting with a number. #914
  • Backwards compatible syntax for associating a class with a node. #835
graph TB
  a --> b:::theClass

  classDef theClass fill:#0f0,stroke:#333,stroke-width:3px;