Markdown Test Page
Welcome to the Markdown Test Page! This document showcases common Markdown syntax and elements.
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Text Formatting
- Bold: This is bold text.
- Italic: This is italic text.
Strikethrough: This isstrikethroughtext.- Combined italic and bold: This is combined italic and bold text.
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First item
- Second item
- Subitem 2.1
- Subitem 2.2
- Third item
Links
- my AniList
Images
Code
Inline Code
Use console.log('Hello, world!') to print to the console.
Code Block
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));