Introduction to Markdown
Markdown is a simple markup language that allows you to write structured documents using plain text format. Imagine writing notes in a notebook, but with special rules that make your writing convertible into neat and structured documents.
Why is markdown so useful? Just like you write WhatsApp messages with bold text or italic text, markdown allows you to format text in a way that's easy to read even before it's converted to the final format. It's like giving instructions to the computer about how text should be displayed, without having to bother with complicated formatting buttons.
Basic Markdown Syntax
Here are examples of the most commonly used markdown syntax. Notice how each symbol has a special meaning, like the hash symbol for headings:
# Heading Level 1## Heading Level Two### Heading Level Three**Bold text***Italic text*~~Strikethrough text~~> Blockquote for important quotes1. First ordered list item2. Second ordered list item3. Third ordered list item- Unordered list item- Another item- Last item[Link text](https://example.com)`inline code````python# Code blockdef hello_world(): print("Hello, World!")```---| Column 1 | Column 2 | Column 3 ||----------|----------|----------|| Data A | Data B | Data C || Data D | Data E | Data F |