88 lines
1.2 KiB
Markdown
88 lines
1.2 KiB
Markdown
# Markdown Features Example
|
|
|
|
## Headers
|
|
|
|
# This is a Heading 1
|
|
## This is a Heading 2
|
|
### This is a Heading 3
|
|
#### This is a Heading 4
|
|
##### This is a Heading 5
|
|
###### This is a Heading 6
|
|
|
|
## Emphasis
|
|
|
|
*This text will be italic*
|
|
**This text will be bold**
|
|
***This text will be both italic and bold***
|
|
|
|
## Lists
|
|
|
|
### Unordered List
|
|
- Item 1
|
|
- Item 2
|
|
- Subitem 2.1
|
|
- Subitem 2.2
|
|
- Item 3
|
|
|
|
### Ordered List
|
|
1. First item
|
|
2. Second item
|
|
3. Third item
|
|
|
|
## Links
|
|
|
|
[This is a link to Ecosia](https://www.ecosia.org)
|
|
|
|
## Images
|
|
|
|
![Alt text for an image](https://via.placeholder.com/150)
|
|
|
|
## Blockquotes
|
|
|
|
> This is a blockquote.
|
|
> It can span multiple lines.
|
|
|
|
## Code
|
|
|
|
Inline code: `print("Hello, World!")`
|
|
|
|
### Code Block
|
|
```
|
|
def hello_world(): print("Hello, World!")
|
|
```
|
|
## Horizontal Rule
|
|
|
|
---
|
|
|
|
## Tables
|
|
|
|
| Header 1 | Header 2 |
|
|
|----------|----------|
|
|
| Row 1 | Row 1 |
|
|
| Row 2 | Row 2 |
|
|
|
|
## Task Lists
|
|
|
|
- [x] Completed task
|
|
- [ ] Incomplete task
|
|
|
|
## Footnotes
|
|
|
|
Here is a sentence with a footnote.[^1]
|
|
|
|
[^1]: This is the footnote.
|
|
|
|
## Strikethrough
|
|
|
|
~~This text is crossed out.~~
|
|
|
|
## Emoji
|
|
|
|
Here is a smiley face: 😄
|
|
|
|
## HTML Elements
|
|
|
|
<div>
|
|
This is a div element in HTML.
|
|
</div>
|