the div or pre tags with class="mermaid". From these tags, mermaid tries to read the diagram/chart definitions and render them into SVG charts. https://mermaid.js.org/intro/#mermaid-api <pre class="mermaid"> sequenceDiagram participant U as ユーザー participant API as WebAPI participant Q as 後続処理 U->>API: 注文リクエスト API-->>U: 注文完了レスポンス API->>Q: 非同期処理開始 Q->>Q: 在庫確認 Q->>Q: 決済・発送処理完了 </pre> 16