Zum Inhalt springen

Markdown Extra Example

etwa 6 MinutenStudierende, Mitarbeitende, IT-Mitarbeitendegeprüft 16. August 2026

This page demonstrates all well-known markdown and markdown extra elements.

Not allowed: Alternative H1 or Alternative H2

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

  • 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
  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item
  • 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
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.

Inline link

Link with title

Reference link

Another reference link

https://example.com

Internal Image

External Image

Reference image

Example Video

Use inline code for small snippets.

Plain code block
No syntax highlighting
javascript
// JavaScript code block
function greet(name) {
console.log(`Hello, ${name}!`);
}
python
# Python code block
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
sql
-- SQL code block
SELECT id, name, email
FROM users
WHERE active = 1;
terraform
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
}
Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6
Left AlignedCenter AlignedRight Aligned
LeftCenterRight
TextTextText
MoreMoreMore
FeatureMarkdownMarkdown Extra
Bold
Italic
Code
Strike
Tables
Footnotes

This is a simple blockquote.

This is a blockquote that spans multiple lines.

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






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

This text has a footnote1.

Another footnote reference2.

The HTML and CSS specifications are maintained by W3C.

Link with attributes

Inline math: $E = mc^2$

Block math: $$ \int_{-\infty}^{\infty} e{-x2} dx = \sqrt{\pi} $$

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

🙂 🥳 👍 🚀 🌟

*Not italic*

`Not code`

\Backslash

# Not a header

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.

  1. This is the first footnote.

  2. This is another footnote with a custom name.