:::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!```:::
Class diagrams
:::uml```classDiagramClass01 <|-- AveryLongClass : CoolClass03 *-- Class04Class05 o-- Class06Class07 .. Class08Class09 --> C2 : Where am i?Class09 --* C3Class09 --|> Class07Class07 : equals()Class07 : Object[] elementDataClass01 : size()Class01 : int chimpClass01 : int gorillaClass08 <--> C2: Cool label```:::
Markdown syntax
Heading
# The largest heading## The second largest heading###### The smallest heading
Styling text
**bold***italic*~~Strikethrough~~
Lists
* Item 1* Item 21. Item 12. Item 2
Task lists
- [x] this is a complete item- [ ] this is an incomplete item
Using emoji
:) :D
Mentioning people
Type @ and select the user to be mentioned.
Input
Render
Inserting attachments as images
Type @@ and select the attachment to be inserted.
Images
![Markdown Logo (Source: Wikipedia)](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)
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 Gherkin syntax first before using this feature.
Scenario Outline: Password should be secure enoughGiven a new password is being setWhen 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; | :) | - |