Skip to content

Instantly share code, notes, and snippets.

@steveseguin
Last active August 22, 2024 01:45
Show Gist options
  • Save steveseguin/039b744d830e050f653b7bca6e1d9122 to your computer and use it in GitHub Desktop.
Save steveseguin/039b744d830e050f653b7bca6e1d9122 to your computer and use it in GitHub Desktop.
sample_markdown.md

Welcome to My Sample Markdown

Introduction

This is a sample markdown document showcasing various markdown elements.

Text Formatting

You can make text bold, italic, or both. You can also use strikethrough for crossed-out text.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
  3. Third item

Links and Images

Visit VDO.Ninja

Markdown Logo

Code

Inline code: print("Hello, World!")

Code block:

def greet(name):
    return f"Hello, {name}!"

print(greet("Markdown"))

Blockquotes

This is a blockquote. It can span multiple lines.

Horizontal Rule


Table

Header 1 Header 2 Header 3
Row 1, Col 1 Row 1, Col 2 Row 1, Col 3
Row 2, Col 1 Row 2, Col 2 Row 2, Col 3

Task List

  • Completed task
  • Incomplete task

That's it! Hope this sample helps you understand markdown better.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment