markdown 树状图、流程图学习

graph TD
    subgraph SVN Architecture
    client1-->|read / write|SVN((SVN server))
    client2-->|read only|SVN
    client3-->|read / write|SVN
    client4-->|read only|SVN
    client5(...)-->SVN
    SVN---|store the data|sharedrive
    end
SVN Architecture
read / write
read only
read / write
read only
store the data
client1
SVN server
client2
client3
client4
...
sharedrive

graph TD
	Object---P1
	Object---P2
	P1---C1
	P1---C2
	P2---C1
	P2---C2
	C1---D
	C2---D
	D-->|实例化|d
		
实例化
Object
P1
P2
C1
C2
D
d

你可能感兴趣的:(学习笔记,#,MarkDown)