All markdown test
Markdown Test Document
Table of Contents
- Introduction
- Headings
- Paragraphs and Text Styles
- Lists
- Links and Images
- Code
- Blockquotes
- Tables
- Horizontal Line
Introduction
This is a test document to demonstrate various Markdown features. Markdown is a lightweight markup language that you can use to format text. It’s easy to read and write!
Headings
Headings are created using the #
symbol. The number of #
characters corresponds to the heading level.
This is a Level 3 Heading
This is a Level 4 Heading
This is a Level 5 Heading
Paragraphs and Text Styles
You can create bold text by surrounding text with double asterisks (**bold**
) or double underscores (__bold__
).
Italiacs are created with single asterisks (*italic*
) or single underscores (_italic_
).
You can also combine bold and italic.
Strikethrough text is created by surrounding text with two tildes (~~strikethrough~~
).
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First item
- Second item
- Third item
Links and Images
You can add links in Markdown.
Images are similar to links but start with an exclamation mark:
Code
You can add inline code
by surrounding text with backticks.
To create a block of code, use three backticks (```) or indent the lines with four spaces:
console.log("Hello, world!");