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

StrategyRisk LevelPotential Return
Day TradingHighVariable
Swing TradingMedium5-20%
Position TradingLow-Medium20-100%
Buy and HoldLowVariable

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

how to embed youtube videos