<pre class="mermaid">graph LR you((你))-.子.->长子-.子.->grandson((孙子)) you-.子.->次子-.女.->granddaught((孙女))
father((爸)) --子-->弟 father --子-->you father --女-->姐
妈 --子-->弟 妈 --子-->you 妈 --女-->姐
姐--子-->外甥</pre>
{% mermaid %}
graph LR you((你))-.子.->son{长子}-.子.->grandson((孙子)) you-.子.->次子-.女.->granddaught((孙女)) father((爸)) --子-->弟 father --子-->you father --女-->sister{姐} 妈 --子-->弟 妈 --子-->you 妈 --女-->sister sister--子-->外甥
{% endmermaid %}
# Flow流程图
1 2 3 4 5 6 7 8 9 10 11 12
st=>start: Start op=>operation: Your Operation op1=>operation: Your Operation1 op2=>operation: Your Operation2 cond=>condition: Yes or No? cond2=>condition: Yes or No? e=>end st->op->cond cond(yes)->op1->e cond(no)->op2->cond2 cond2(yes)->e cond2(no)->e