You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider using Mermaid for ER diagrams and other technical drawings in the lessons.
Here's an example ER diagram from the data modeling lesson:
erDiagram
Site ||--o{ SpeciesObservation : contains
Site {
int site
string name
float temp
}
SpeciesObservation {
int id
string date
int site
string spcode
string height
}
Loading
The syntax should also allow specification of primary and foreign keys, but when used, I see GitHub rendering issues, so this needs to be explored further. For example:
erDiagram
Site ||--o{ SpeciesObservation : contains
Site {
int site PK
string name
float temp
}
SpeciesObservation {
int id PK
string date
int site FK
string spcode
string height
}
Loading
I think the cause for this issue has been identified upstream in mermaid issue mermaid-js/mermaid#2548.
The text was updated successfully, but these errors were encountered:
Consider using Mermaid for ER diagrams and other technical drawings in the lessons.
Here's an example ER diagram from the data modeling lesson:
The syntax should also allow specification of primary and foreign keys, but when used, I see GitHub rendering issues, so this needs to be explored further. For example:
I think the cause for this issue has been identified upstream in mermaid issue mermaid-js/mermaid#2548.
The text was updated successfully, but these errors were encountered: