diff --git a/BPM/graphic_editor/mermaid_etc/mermaid/example2.md b/BPM/graphic_editor/mermaid_etc/mermaid/example2.md index 801e66cd..451c5202 100644 --- a/BPM/graphic_editor/mermaid_etc/mermaid/example2.md +++ b/BPM/graphic_editor/mermaid_etc/mermaid/example2.md @@ -15,3 +15,28 @@ subgraph Основные процессы end C[Процесс C] --> A ``` + +Блок-схема со стилем https://gist.github.com/ChristopherA/bffddfdf7b1502215e44cec9fb766dfd +``` mermaid +graph TB + sq[Square shape] --> ci((Circle shape)) + + subgraph A + od>Odd shape]-- Two line
edge comment --> ro + di{Diamond with
line break} -.-> ro(Rounded
square
shape) + di==>ro2(Rounded square shape) + end + + %% Notice that no text in shape are added here instead that is appended further down + e --> od3>Really long text with linebreak
in an Odd shape] + + %% Comments after double percent signs + e((Inner / circle
and some odd
special characters)) --> f(,.?!+-*ز) + + cyr[Cyrillic]-->cyr2((Circle shape Начало)); + + classDef green fill:#9f6,stroke:#333,stroke-width:2px; + classDef orange fill:#f96,stroke:#333,stroke-width:4px; + class sq,e green + class di orange +```