Skip to content

Commit

Permalink
Add placeholders, and orientation chart
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSteam committed Feb 24, 2022
1 parent 99ba210 commit ad1ee86
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions 1-flowchart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Orientation

###

<table>
<tr><td></td><td>Standard</td><td>Reversed</td></tr>
<tr><td>Vertical</td>
<td>

```mermaid
flowchart TB;
Start --> Middle --> End
```
**TB**: Top to Bottom

</td>
<td>

```mermaid
flowchart BT;
Start --> Middle --> End
```
**BT**: Bottom to Top

</td>
</tr>
<tr><td>Horizontal</td>
<td>

```mermaid
flowchart LR;
Start --> Middle --> End
```
**LR**: Left to Right

</td>
<td>

```mermaid
flowchart RL;
Start --> Middle --> End
```
**RL**: Right to Left

</td>
</tr>
</table>
Empty file added 10-others.md
Empty file.
Empty file added 2-sequence.md
Empty file.
Empty file added 3-class.md
Empty file.
Empty file added 4-state.md
Empty file.
Empty file added 5-entity-relationship.md
Empty file.
Empty file added 6-user-journey.md
Empty file.
Empty file added 7-gantt.md
Empty file.
Empty file added 8-pie.md
Empty file.
Empty file added 9-requirement.md
Empty file.

0 comments on commit ad1ee86

Please sign in to comment.