-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
132 additions
and
197 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,7 @@ format: | |
mermaid: | ||
theme: neutral | ||
theme: | ||
dark: darkly | ||
light: flatly | ||
|
||
dark: darkly | ||
|
||
search: false |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
gantt | ||
dateFormat YYYY-MM-DD | ||
title Adding GANTT diagram functionality to mermaid | ||
section A section | ||
Completed task :done, des1, 2014-01-06,2014-01-08 | ||
Active task :active, des2, 2014-01-09, 3d | ||
Future task : des3, after des2, 5d | ||
Future task2 : des4, after des3, 5d | ||
section Critical tasks | ||
Completed task in the critical line :crit, done, 2014-01-06,24h | ||
Implement parser and jison :crit, done, after des1, 2d | ||
Create tests for parser :crit, active, 3d | ||
Future task in critical line :crit, 5d | ||
Create tests for renderer :2d | ||
Add to mermaid :1d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
|
||
flowchart LR | ||
|
||
%% nodes | ||
P(presence):::in | ||
|
||
A(absence):::in | ||
|
||
A("pseudo-absence"):::in | ||
pts(obs):::out | ||
|
||
X[/extract/]:::fxn | ||
|
||
env(env):::in | ||
D[[data]]:::out | ||
|
||
tbl[[tbl]]:::out | ||
|
||
%% edges | ||
P --> pts | ||
|
||
A --> pts | ||
|
||
pts --> X | ||
|
||
env --> X | ||
|
||
X --> tbl | ||
|
||
X --> D | ||
|
||
%% Legend | ||
in(input):::in | ||
fxn[/process/]:::fxn | ||
out(output):::out | ||
subgraph Legend | ||
in | ||
fxn | ||
out | ||
end | ||
|
||
%% styles | ||
classDef in fill:lightblue | ||
|
||
classDef out fill:lightgreen | ||
|
||
classDef fxn fill:yellow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters