Save Load
GitHub 切换暗/亮/自动模式 切换暗/亮/自动模式 切换暗/亮/自动模式 返回首页

Markdown

这是标题、

这是二级标题、

这是三级标题

这是三级标题

这是三级标题
这是三级标题

引用

嵌套引用

三嵌套引用

四嵌套引用


这是加粗的文字 这是倾斜的文字` 这是斜体加粗的文字 这是加删除线的文字

这是
换行


  • -

    -
    2. 1.

image


GitHub

自动生成连接 http://www.github.com/


//代码块

E = mc^2

表格:

header1 header2
row1col1 row1col2
row2col1 row2col2

在这里插入 HTML 内容


目前支持的 HTML 元素有:
等 ,如:

使用 Ctrl+Alt+Del 重启电脑


制作待办事项 To-do Lis

  • 待办事项
    • 待办事项
  • 待办事项
    • 待办事项

绘制:流程图、序列图、甘特图、表格


逻辑示意图类型

流程图

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

序列图

sequenceDiagram
    participant Alice
    participant Bob
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts <br/>prevail!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!

甘特图

gantt
dateFormat  YYYY-MM-DD
title Adding GANTT diagram to mermaid
excludes weekdays 2014-01-10

section A section
Completed task            :done,    des1, 2014-01-06,2014-01-08
Active task               :active,  des2, 2014-01-09, 3d
Future task               :         des3, after des2, 5d
Future task2               :         des4, after des3, 5d

类图

classDiagram
Class01 <|-- AveryLongClass : Cool
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 --> C2 : Where am i?
Class09 --* C3
Class09 --|> Class07
Class07 : equals()
Class07 : Object[] elementData
Class01 : size()
Class01 : int chimp
Class01 : int gorilla
Class08 <--> C2: Cool label

Git - 实验性

gitGraph:
options
{
    "nodeSpacing": 150,
    "nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch

饼图(或圆形图)

pie
    title Key elements in Product X
    "Calcium" : 42.96
    "Potassium" : 50.05
    "Magnesium" : 10.01
    "Iron" :  5
@startuml

start

if (Graphviz 已安装?) then (yes)
  :处理所有\n绘制任务;
else (no)
  :仅处理
  __时序图__ 和 __活动__ 图;
endif

stop

@enduml