Introduction to Markdown

Markdown is a lightweight markup language designed to be easy to read and write. This guide demonstrates the various formatting features available in Markdown.

Text Formatting

Basic Formatting

Plain text requires no special formatting.

This text is italicized and this is also italicized

This text is bold and this is also bold

This text combines bold and italic and this also combines them

This text has a strikethrough effect

Blockquotes

Here’s how to use blockquotes:

Single level blockquote. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Lists and Organization

Unordered Lists

  • First item
  • Second item
    • Nested item 2.1
    • Nested item 2.2
  • Third item

Ordered Lists

  1. First step
  2. Second step
    1. Substep 2.1
    2. Substep 2.2
  3. Third step

Links and Media

Images

Sample Image Another Example

Code Examples

Inline Code

Use inline code for short code snippets.

Code Blocks

import torch
import numpy as np  

# This is a comment
x = torch.randn(10, 10)
print(x)