Text Styling Examples
This page demonstrates basic text styling options using standard Markdown.
1. Markdown Basic Formatting
Bold Text
This text is bold
Italic Text
This text is italic
Bold and Italic
This text is bold and italic
2. Blockquotes
This is a blockquote. It’s great for highlighting important quotes or notes.
You can have multiple paragraphs in a blockquote.
3. Code Syntax Highlighting
# This is Python code with syntax highlighting
def calculate_profit(entry_price, exit_price, shares):
return (exit_price - entry_price) * shares
profit = calculate_profit(100, 150, 10)
print(f"Your profit is ${profit}")
4. Table Formatting
| Strategy | Risk Level | Potential Return |
|---|---|---|
| Day Trading | High | Variable |
| Swing Trading | Medium | 5-20% |
| Position Trading | Low-Medium | 20-100% |
| Buy and Hold | Low | Variable |
Usage Tips
- Use bold for key terms you want to emphasize
- Use blockquotes for important notes
- Use code blocks for any code examples or command line instructions