指南扩展: 流程块

subgraph title
    graph definition
end

一个案例:

graph TB
    subgraph one
    a1-->a2
    end
    subgraph two
    b1-->b2
    end
    subgraph three
    c1-->c2
    end
    c1-->a2

three two onec1c2b1b2a1a2