Learning markdown (a)

Turn: https://www.jianshu.com/p/81e1608ea2d8

------------------------------------------------------------------------
Markdown workflow tools and plug-ins a lot, here to record some simple Flow of use

Preview

 
Markdown Flow Preview

Source

    ```flow
    open=>start: Open:>https://github.com/knsv/mermaid userInput=>inputoutput: User Input processes=>operation: Processes results=>condition: Yes or No? regis=>condition: GoSignUp,Yes or No? userr=>operation: SignUp end=>end: End open->userInput->processes->results results(yes)->end results(no)->regis regis(yes)->userr regis(no)->userInput ``` 

Explanation

flowchart is divided into two flow portions, to define and control node.

Defined node

open=>start: Open:>https://github.com/knsv/mermaid // 格式 tag=type: content:>url 
  • tag node name
  • type node type
    • start start node
    • end end node
    • operation operation node
    • subroutine subroutine node
    • condition condition node
    • inputoutput input or output node
  • content node descriptor
  • url hyperlinks, text and binding

Associated node

Used ->to shut two nodes, if conditionthe node will yesand notwo branches.
open->userInput->processes->results results(yes)->end results(no)->regis 

Note: There can be only condition being discovered yesor notwo conditions. If there are other ways please leave a message.



Guess you like

Origin www.cnblogs.com/oxspirt/p/12031539.html