Page: ALL TESTS

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.

3. Lists

Unordered List

Ordered List

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

4. Links

You can create links like this.

5. Images

You can add images by using ![]().

Sample Image

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.

11. Task List

You can create task lists:

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:

You can copy and paste the above code into any Markdown editor or viewer, and it will render as expected!

Footnotes

  1. This is the footnote text. ↩
Edit