Browse Source

docs: update mermaid code

master
Dnomd343 2 years ago
parent
commit
336611c576
  1. 48
      README.md

48
README.md

@ -3,25 +3,43 @@
```mermaid ```mermaid
graph LR graph LR
subgraph sample subgraph sample
sample_1-a -- fix --> sample_1 subgraph raw
sample_1-b --> sample_1 s1a_raw{{sample_1-a}}
sample_2-a -- fix --> sample_2 s1b_raw{{sample_1-b}}
sample_2-b -- fix --> sample_2 s2a_raw{{sample_2-a}}
subgraph release s2b_raw{{sample_2-b}}
sample_1
sample_2
sample_3
end end
subgraph combine
s1_combine[sample_1]
s2_combine[sample_2]
s3_combine[sample_3]
end
subgraph fixed
s1_fixed(sample_1)
s2_fixed(sample_2)
s3_fixed(sample_3)
end
s1a_raw -- replenish --> s1_combine
s1b_raw --> s1_combine
s2a_raw -- replenish --> s2_combine
s2b_raw -- replenish --> s2_combine
s1_combine -- fix --> s1_fixed
s2_combine -- fix --> s2_fixed
s3_combine -- fix --> s3_fixed
end end
subgraph crawler subgraph crawler
108shu.com --> sample_1-a source_1([108shu.com]) --> s1a_raw
aidusk.com --> sample_1-b source_2([aidusk.com]) --> s1b_raw
ixsw.la --> sample_1-b source_3([ixsw.la]) --> s1b_raw
m.wxsy.net --> sample_2-a source_4([m.wxsy.net]) --> s2a_raw
wxsy.net --> sample_2-a source_5([wxsy.net]) --> s2a_raw
xswang.com --> sample_2-b source_6([xswang.com]) --> s2b_raw
zhihu.com -- fix --> sample_3 source_7([zhihu.com]) -- clean up --> s3_combine
end end
``` ```

Loading…
Cancel
Save