Page: ALL TEST
Markdown Features Overview
This is a sample Markdown file showcasing various features. Markdown is a lightweight markup language that you can use to format text.
1. Headers
You can create headers using # symbols.
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
2. Emphasis
You can emphasize text with italic or bold formatting.
- Italic text:
*italic*or_italic_ - Bold text:
**bold**or__bold__ - Bold and Italic text:
***bold and italic***
3. Lists
Unordered List
- Item 1
- Item 2
- Subitem 1
- Subitem 2
- Item 3
Ordered List
- First item
- Second item
- Third item
4. Links
You can create links like this.
- Link to Google
- Link to Markdown Guide
5. Images
You can add images by using ![]().
6. Blockquotes
Blockquotes are useful for quoting text:
"Markdown is a great way to write documents."
7. Code
You can include code snippets using backticks.
Inline Code
Here is some inline code.
Code Block
You can create code blocks with three backticks (```) before and after the code.
```javascript function helloWorld() { console.log("Hello, world!"); }
```
8. Tables
Hereβs a sample table:
Header 1
Header 2
Header 3
Row 1
Data 1
Data 2
Row 2
Data 3
Data 4
Row 3
Data 5
Data 6 |header| h2 | h3 | |--|--|--| | d1 |d2 | d3 | | d1 |d2 | d3 | | d1 |d2 | d3 |
9. Horizontal Rule
You can create horizontal lines using ---, ***, or ___.
---
***
___
_
10. Emojis
You can include emojis in your Markdown file.
- π Smile
- π Celebration
- π Writing
11. Task List
You can create task lists:
- Task 1
- Task 2 (completed)
- Task 3
12. Strikethrough
You can strike through text with ~~:
This is strikethrough text.
13. Footnotes
You can add footnotes in Markdown:
Here is a footnote reference1.
14. Custom HTML
Markdown also supports raw HTML: bolder <b> text <a href="example.com">example.com websitelink</a></b>
15. Definition Lists
You can create definition lists:
Term 1 : Definition of term 1
Term 2 : Definition of term 2
16. Quotes with Link
You can link to a quote:
This is a quote and goes on
Conclusion
This is a demonstration of some common Markdown features. Markdown is versatile and great for quickly formatting text.
Key Features in This Markdown:
- Headers: Using
#symbols. - Emphasis: italic, bold, and bold and italic.
- Lists: Unordered and ordered lists.
- Links: Hyperlinks with
[text](URL). - Images: Embedding images with
. - Blockquotes: Using
>. - Code: Inline code and code blocks with backticks.
- Tables: Creating tables with
|. - Horizontal Rule:
---,***, or___for a horizontal line. - Emojis: Using Unicode emojis (e.g.,
π). - Task List:
- [ ]for incomplete tasks and- [x]for completed tasks. - Strikethrough:
~~text~~. - Footnotes: Using
[^1]to add footnotes. - Custom HTML: HTML elements inside Markdown.
- Definition Lists: Adding definitions.
You can copy and paste the above code into any Markdown editor or viewer, and it will render as expected!
Footnotes
- This is the footnote text. β©