Main Heading Level 1
This is a paragraph following the main heading. Paragraphs have comfortable line spacing and bottom margins.
Section Heading Level 2
Here's a paragraph with some bold text and italic text. You can also include links that change color on hover.
Subsection Heading Level 3
This section demonstrates various list types and other formatting elements.
Smaller Heading Level 4
Minor Heading Level 5
Smallest Heading Level 6
- First unordered list item
- Second unordered list item with more content that might wrap to multiple lines
- Third item with nested list:
- Nested item 1
- Nested item 2
- Fourth item
- First ordered list item
- Second ordered list item
- Third item with nested ordered list:
- Nested numbered item 1
- Nested numbered item 2
- Fourth item
You can include inline code snippets within your paragraphs. For example:
const myVariable = "hello";
// This is a code block with syntax highlighting
function greetUser(name) {
console.log(`Hello, ${name}!`);
return true;
}
// Call the function
greetUser("World");
# Python code example
def calculate_sum(a, b):
"""Calculate the sum of two numbers"""
return a + b
result = calculate_sum(10, 20)
print(f"The result is: {result}")
This is a blockquote. It's useful for highlighting important information, quotes from other sources, or callout boxes.
Blockquotes can contain multiple paragraphs with proper spacing.
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Row 1, Cell 1 | Row 1, Cell 2 | Row 1, Cell 3 |
| Row 2, Cell 1 | Row 2, Cell 2 | Row 2, Cell 3 |
| Row 3, Cell 1 | Row 3, Cell 2 | Row 3, Cell 3 |
- Term 1
- Definition for term 1. This is indented and can contain detailed explanations.
- Term 2
- Definition for term 2 with more information about the concept.
- Term 3
- Definition for term 3.
Combining Elements
You can freely combine all these elements. For instance, you might have a paragraph that introduces a concept, followed by:
- A bulleted list with important points
- References to
code snippetsor technical terms - Links to external resources
Then you might want to highlight a key insight in a blockquote.
And continue with more explanatory text that includes both emphasis and strong emphasis as needed.