:::uml
```
stateDiagram
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]
```
:::
Sequence diagrams
:::uml
```
sequenceDiagram
autonumber
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
```
:::
As Eleanor Roosevelt said:
> You must do the thing you think you cannot do.
Tables
| First Header | Second Header |
| - | - |
| Content from cell 1 | Content from cell 2 |
| Content in the first column | Content in the second column |
Gherkin syntax
Please enable the line-break option and the Gherkin syntax first before using this feature.
Scenario Outline: Password should be secure enough
Given a new password is being set
When I try to set the password to <new password>
Then the password should be considered <secure?>
Examples:
| new password | secure? | notes |
| - | - | - |
| p@swrd1; | :( | No uppercase character |
| Passwrd1 | :( | No special character |
| P@swrdl; | :) | - |