Skip to content

Heading

Markdown Code

md
## Heading2

### Heading3

#### Heading4

##### Heading5

Bold

bold

Markdown Code
markdown
**bold**

Italic

Italic

Markdown Code
markdown
_Italic_

Blockquote

blockquote

Markdown Code
markdown
> blockquote

Ordered List

  1. First item
  2. Second item
  3. Third item
Markdown Code
markdown
1. First item
2. Second item
3. Third item

Unordered List

  • First item
  • Second item
  • Third item
Markdown Code
markdown
- First item
- Second item
- Third item

Code

js
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('Alice')); // Output: Hello, Alice!
Markdown Code
``` js
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('Alice')); // Output: Hello, Alice!
```

Horizontal Rule


Markdown Code
md
---

Youtube Music

Markdown Code
md
[Youtube Music](https://music.youtube.com/)

Image

Markdown Code
md
![](/assets/placeholder/horizon.webp)

Table

FruitDigestive BenefitsBowel Movement Benefits
AppleHigh in dietary fiber (pectin)Promotes regular bowel movements
BananaContains prebiotics and soluble fiberHelps with constipation
PineappleContains bromelain (an enzyme)Aids digestion and reduces bloating
PapayaContains papain (an enzyme)Helps with digestion and bowel regularity
PrunesHigh in fiber and sorbitolEffective for relieving constipation
KiwiHigh in fiber and actinidin (an enzyme)Promotes healthy digestion
MangoContains fiber and digestive enzymesSupports digestion and bowel health
PearHigh in fiber (both soluble and insoluble)Supports bowel movements and digestion
OrangeHigh in fiber and vitamin CAids in digestion and bowel regularity
Markdown Code
md
| Fruit     | Digestive Benefits                         | Bowel Movement Benefits                   |
| --------- | ------------------------------------------ | ----------------------------------------- |
| Apple     | High in dietary fiber (pectin)             | Promotes regular bowel movements          |
| Banana    | Contains prebiotics and soluble fiber      | Helps with constipation                   |
| Pineapple | Contains bromelain (an enzyme)             | Aids digestion and reduces bloating       |
| Papaya    | Contains papain (an enzyme)                | Helps with digestion and bowel regularity |
| Prunes    | High in fiber and sorbitol                 | Effective for relieving constipation      |
| Kiwi      | High in fiber and actinidin (an enzyme)    | Promotes healthy digestion                |
| Mango     | Contains fiber and digestive enzymes       | Supports digestion and bowel health       |
| Pear      | High in fiber (both soluble and insoluble) | Supports bowel movements and digestion    |
| Orange    | High in fiber and vitamin C                | Aids in digestion and bowel regularity    |

Strikethrough

The world is flat.

Markdown Code
md
~~The world is flat.~~

Task List

  • Write the press release
  • Update the website
  • Contact the media
Markdown Code
md
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

Released under the MIT License