title | layout | date | mathjax | diagram | ruby_notation |
---|---|---|---|---|---|
第一篇文章 |
post |
2016-12-22 |
true |
true |
true |
目录
* TOC {:toc}[someword]{释义}
详细点此展开
import sys
print "hello"
https://bramp.github.io/js-sequence-diagrams/
participant Device
participant Browser
participant Server
Browser->Server: username and password
Note over Server: verify password
Note over Server: generate challenge
Server->Browser: challenge
Browser->Device: challenge
Note over Device: user touches button
Device-->Browser: response
Browser->Server: response
Note over Server: verify response
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1