mermaid-js / mermaid

Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown
https://mermaid.js.org
MIT License
68.79k stars 6.08k forks source link

erDiagram chinese #5397

Closed macro0000 closed 3 months ago

macro0000 commented 3 months ago

Description

erDiagram
    Performance_Goal {
       goalId int PK "目标ID"
       goalName varchar255  "目标名称"
       description text  "描述"
       deadline date  "截止日期"
       periodLength int  "周期长度"
    }
    Performance_Goal ||--o{ Performance_Task : 测试
    Performance_Goal ||--o{ Performance_Feedback : yongyou
erDiagram
    Performance_Goal {
       goalId int PK "目标ID"
       goalName varchar255  "目标名称"
       description text  "描述"
       deadline date  "截止日期"
       periodLength int  "周期长度"
    }
    Performance_Goal ||--o{ Performance_Task : 测试
    Performance_Goal ||--o{ Performance_Feedback : yongyou

Steps to reproduce

see

Screenshots

No response

Code Sample

No response

Setup

Suggested Solutions

No response

Additional Context

No response

sidharthv96 commented 3 months ago

Please use double quotes around non ASCII characters.

erDiagram
    Performance_Goal {
       goalId int PK "目标ID"
       goalName varchar255  "目标名称"
       description text  "描述"
       deadline date  "截止日期"
       periodLength int  "周期长度"
    }
    Performance_Goal ||--o{ Performance_Task : "测试"
    Performance_Goal ||--o{ Performance_Feedback : yongyou
erDiagram
    Performance_Goal {
       goalId int PK "目标ID"
       goalName varchar255  "目标名称"
       description text  "描述"
       deadline date  "截止日期"
       periodLength int  "周期长度"
    }
    Performance_Goal ||--o{ Performance_Task : "测试"
    Performance_Goal ||--o{ Performance_Feedback : yongyou