Markdown Extra Example
This content is not available in your language yet.
Markdown Demo Page
Abschnitt betitelt „Markdown Demo Page“This page demonstrates all well-known markdown and markdown extra elements.
Table of Contents
Abschnitt betitelt „Table of Contents“- Headers
- Text Formatting
- Lists
- Links and Images
- Code
- Tables
- Blockquotes
- Horizontal Rules
- HTML Elements
- Markdown Extra Features
Headers
Abschnitt betitelt „Headers“Header 1
Abschnitt betitelt „Header 1“Header 2
Abschnitt betitelt „Header 2“Header 3
Abschnitt betitelt „Header 3“Header 4
Abschnitt betitelt „Header 4“Header 5
Abschnitt betitelt „Header 5“Header 6
Abschnitt betitelt „Header 6“Not allowed: Alternative H1 or Alternative H2
Text Formatting
Abschnitt betitelt „Text Formatting“Bold text or bold text
Italic text or italic text
Bold and italic or bold and italic
Strikethrough text
Highlighted text (if supported)
Subscript: H2O
Superscript: X2
Unordered Lists
Abschnitt betitelt „Unordered Lists“- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Sub-subitem 2.2.1
- Item 3
Alternative syntax:
- Item A
- Item B
- Subitem B.1
- Subitem B.2
Ordered Lists
Abschnitt betitelt „Ordered Lists“- First item
- Second item
- Subitem 2.1
- Subitem 2.2
- Third item
Task Lists
Abschnitt betitelt „Task Lists“-
Completed task
Task Description
-
Incomplete task with subtasks
Task Description
-
Completed subtask
-
Another completed subtask
-
Incomplete subtask
-
-
Another incomplete task
-
Simple completed task without description
-
Simple incomplete task without description
Definition Lists
Abschnitt betitelt „Definition Lists“- Term 1
- Definition 1
- Term 2
- Definition 2a
- Definition 2b
- Complex Term with Multiple Words
- This is a longer definition that spans multiple words and shows how the styling works with more content.
- Single Definition Term
- Just one definition here.
Admonitions
Abschnitt betitelt „Admonitions“Links and Images
Abschnitt betitelt „Links and Images“


Inline Code
Abschnitt betitelt „Inline Code“Use inline code for small snippets.
Code Blocks
Abschnitt betitelt „Code Blocks“Plain code blockNo syntax highlighting// JavaScript code blockfunction greet(name) { console.log(`Hello, ${name}!`);}# Python code blockdef fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2)-- SQL code blockSELECT id, name, emailFROM usersWHERE active = 1;Terraform Code with Line Highlighting
Abschnitt betitelt „Terraform Code with Line Highlighting“resource "azurerm_resource_group" "vending-identity" { name = var.management_vending_settings.user_assigned_resource_group_name location = var.management_vending_settings.location tags = var.tags}
resource "azurerm_user_assigned_identity" "vending-uai" { for_each = local.federated_credentials
location = azurerm_resource_group.vending-identity.location resource_group_name = azurerm_resource_group.vending-identity.name name = each.value.name tags = var.tags}
resource "azurerm_federated_identity_credential" "vending-uai" { for_each = merge([ for key, identity in local.federated_credentials : { for credential in identity.credentials : credential.name => { name = credential.name step = credential.workflow_step subject = credential.subject } } ]...)
name = each.value.name resource_group_name = azurerm_resource_group.vending-identity.name audience = ["api://AzureADTokenExchange"] issuer = "https://token.actions.githubusercontent.com" parent_id = azurerm_user_assigned_identity.vending-uai[each.value.step].id subject = each.value.subject}Simple Table
Abschnitt betitelt „Simple Table“| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Table with Alignment
Abschnitt betitelt „Table with Alignment“| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| Left | Center | Right |
| Text | Text | Text |
| More | More | More |
Table with Complex Content
Abschnitt betitelt „Table with Complex Content“| Feature | Markdown | Markdown Extra |
|---|---|---|
| Bold | ✓ | ✓ |
| Italic | ✓ | ✓ |
Code | ✓ | ✓ |
| ✓ | ✓ | |
| Tables | ✓ | ✓ |
| Footnotes | ✗ | ✓ |
Blockquotes
Abschnitt betitelt „Blockquotes“This is a simple blockquote.
This is a blockquote that spans multiple lines.
Blockquote with header
Abschnitt betitelt „Blockquote with header“This blockquote contains other markdown elements:
- List item 1
- List item 2
Bold text in blockquote.
Level 1 quote
Level 2 nested quote
Level 3 nested quote
Horizontal Rules
Abschnitt betitelt „Horizontal Rules“HTML Elements
Abschnitt betitelt „HTML Elements“HTML elements can be used in markdown.
Bold HTML and italic HTML.Collapsible section
This content is hidden by default and can be expanded.
- Hidden list item 1
- Hidden list item 2
Ctrl + C to copy
Highlighted text with HTML
Markdown Extra Features
Abschnitt betitelt „Markdown Extra Features“Footnotes
Abschnitt betitelt „Footnotes“This text has a footnote1.
Another footnote reference2.
Abbreviations
Abschnitt betitelt „Abbreviations“The HTML and CSS specifications are maintained by W3C.
Special Attributes
Abschnitt betitelt „Special Attributes“Headers with IDs
Abschnitt betitelt „Headers with IDs“Emphasis with Classes
Abschnitt betitelt „Emphasis with Classes“Links with Attributes
Abschnitt betitelt „Links with Attributes“Math (if supported)
Abschnitt betitelt „Math (if supported)“Inline math: $E = mc^2$
Block math: $$ \int_{-\infty}^{\infty} e{-x2} dx = \sqrt{\pi} $$
Mermaid Diagrams (if supported)
Abschnitt betitelt „Mermaid Diagrams (if supported)“graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Process 1]
B -->|No| D[Process 2]
C --> E[End]
D --> E
linkStyle default stroke: white
Emoji (if supported)
Abschnitt betitelt „Emoji (if supported)“🙂 🥳 👍 🚀 🌟
Special Characters and Escaping
Abschnitt betitelt „Special Characters and Escaping“*Not italic*
`Not code`
\Backslash
# Not a header
Line Breaks
Abschnitt betitelt „Line Breaks“This line ends with two spaces
And this is a new line.
This line ends with a backslash
And this is also a new line.
This comprehensive demo showcases the full range of markdown and markdown extra capabilities.