Markdown和PlantUML的基本使用

首先需要在VS Code中安装Markdown extention和plantUML插件

测试标题

这是测试标题,使用一个#号配合标题

测试1级标题

这是1级测试标题,使用2个#号配合标题

测试2级标题

这是2级测试标题,使用3个#号配合标题

这里是多级列表
  1. Part A
    1. Section One
      1. Example 1
      2. Example 2
    2. Section Two
    3. Section Three
  2. Part B
    • Section One
    • Section Two
    • Section Three
    • Section Four
  3. Part C
    就是简单使用序号加.的英文句号,或者*/+/-加空格,如果有缩进,则使用TAB

接下来进行代码测试code test,这是行内代码测试;使用键盘左上角数字1左边的 ’ 符号包括行内代码

接下来是代码块测试,以3个 ` 开头,后跟语言类型如 C++,代码块结尾以3个和开头一样的符号结尾

double func(int para) {
    return sqrt(para);
}

接下来是流程图测试,以3个 ` 开头,后跟plantuml以标识这里用到plantuml

@startuml

start

:prepare();

if (initSuccess()) then (true)
    :process();
else (false)
endif

stop

@enduml

接下来是时序图测试:

@startuml

Alice -> Bob: Get device info

Bob -> Alice: Device info

Alice -> Alice: Self test

@enduml

接下来是类图测试:

@startuml

SessionManager *-- ISession
ISession ^-- Session
Session --> Handle

SessionManager : GetDevInfo();
SessionManager : ISession[] sessionSet;

ISession : TxConfig();

Session : TxConfig();
Session : txHandle;
Session : rxHandles

Handle : read();
Handle : write();

@enduml

你可能感兴趣的:(基础,Markdown,plantUML)