Skip to content

Instantly share code, notes, and snippets.

@kntjspr
Forked from martinwoodward/mermaid.md
Last active August 4, 2024 11:33
Show Gist options
  • Select an option

  • Save kntjspr/7559dd2f76ad66e87306eb9a06179764 to your computer and use it in GitHub Desktop.

Select an option

Save kntjspr/7559dd2f76ad66e87306eb9a06179764 to your computer and use it in GitHub Desktop.
GitHub HTML Rendering Pipeline
```mermaid
sequenceDiagram
    participant dotcom
    participant iframe
    participant viewscreen
    dotcom->>iframe: loads html w/ iframe url
    iframe->>viewscreen: request template
    viewscreen->>iframe: html & javascript
    iframe->>dotcom: iframe ready
    dotcom->>iframe: set mermaid data on iframe
    iframe->>iframe: render mermaid
```
sequenceDiagram
    participant dotcom
    participant iframe
    participant viewscreen
    dotcom->>iframe: loads html w/ iframe url
    iframe->>viewscreen: request template
    viewscreen->>iframe: html & javascript
    iframe->>dotcom: iframe ready
    dotcom->>iframe: set mermaid data on iframe
    iframe->>iframe: render mermaid
Loading
```mermaid
  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;
```
  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment