The following extensions are supported (see description of some of them here):
Hover over the following abbreviation: HTML.
The headers must be enclosed in double quotes. The text must not contain empty lines.
This is a question.
This is a warning message.
This is an informational message.
This is an abstract.
This is a success message.
This is a failure message.
This is a danger message.
This is a bug message.
This is an example.
This is a quote.
Nested elements are supported:
This is a quote inside an example.
Creates links to section headers: link.
HTML attributes include for example CSS for any text.
Makes links clickable: https://www.example.com.
Creates definition lists using <dt>
/ <dd>
:
Whatโs CSS1, see page bottom.
The full set of emotions isnโt formally defined, but generally includes the following: Github list.
๐ ๐ ๐
Provides all Markdown features that Gitlab supports, for example Mermaid diagrams (see supported diagram types):
---
title: Tea & Coffee (State) Machine
---
stateDiagram-v2
direction LR
state ChooseWhatToMake <<choice>>
%% labels
state "Waiting for button press" as WaitForButton
state "Boil water" as BoilWater
state "Make coffee" as MakeCoffee
state "Make tea" as MakeTea
state "Add lemon" as AddLemon
state "Add sugar" as AddSugar
state "Notify customer" as SignalReady
%% styles
classDef TeaClass fill:#752400
classDef CoffeeClass fill:#a76939,color:white
class MakeTea TeaClass
class MakeCoffee CoffeeClass
[*] --> WaitForButton: Machine switched on
WaitForButton --> BoilWater: Button pressed
BoilWater --> ChooseWhatToMake: Water boiled
%% choice: tea
ChooseWhatToMake --> MakeTea: Make tea?
state MakeTea {
direction LR
AddLemon --> AddSugar
}
MakeTea --> SignalReady: Tea ready
%% choice: coffee
ChooseWhatToMake --> MakeCoffee: Make coffee?
note right of MakeCoffee
Instant coffee / ground coffee / bean coffee.
end note
MakeCoffee --> SignalReady: Coffee ready
SignalReady --> WaitForButton: Cup taken
gitGraph title Git Commits
commit id: "Initial commit" tag: "v1.0.0"
branch develop
commit
branch bugfix/TICKET-1
commit
commit
checkout develop
commit
merge bugfix/TICKET-1
checkout main
merge develop tag: "v1.0.1"
pie title Weather Last Month (Pie Chart)
"Sunny days" : 22
"Rainy days" : 5
"Foggy days" : 3
Renders PlantUML diagrams:
Embeds remote media:
See page top.
Header 1 | Header 2 |
---|---|
Content 1 | Content 2 |
Content 3 | Content 4 |
Converts to pretty HTML entities:
Cascading Style Sheets
โฉ