Getting Started with Markdown
By Alice Johnson||Tools & Productivity
Getting Started with Markdown
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext documents. This guide covers all the essential syntax.
Text Formatting
Here are the basic text formatting options:
- bold text using double asterisks
- italic text using single asterisks
- bold and italic using triple asterisks
strikethroughusing double tildes
Lists
Unordered Lists
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered Lists
- First step
- Second step
- Third step
Code
Inline code: const greeting = "Hello World";
Code block:
1function fibonacci(n) { 2 if (n <= 1) return n; 3 return fibonacci(n - 1) + fibonacci(n - 2); 4}
Links and Images
Blockquotes
This is a blockquote. It can span multiple lines and is great for highlighting important information or quotes from other sources.
- Author Name
Tables
| Feature | Supported | Notes |
|---|---|---|
| Headers | Yes | H1-H6 |
| Lists | Yes | Ordered & Unordered |
| Code | Yes | Inline & Blocks |
Horizontal Rule
Conclusion
Markdown makes writing for the web simple and intuitive!
Comments
to leave a comment
Loading comments...