Markdown Demo in ublog

In terms of syntax, it is based on Nuxt Content.

Headers

# H1

## H2

### H3

#### H4

H1

H2

H3

H4

Paragraphs

This is a paragraph.

This is another paragraph.

This is a paragraph.

This is another paragraph.

Emphasis

*italic*

**bold**

***bold italic***

italic

bold

bold italic

Lists

- item 1
- item 2
  - item 2.1
  - item 2.2
- item 3
  • item 1
  • item 2
    • item 2.1
    • item 2.2
  • item 3

Ordered Lists

1. item 1
2. item 2
    1. item 2.1
    2. item 2.2
    3. item 2.3
3. item 3
  1. item 1
  2. item 2
    1. item 2.1
    2. item 2.2
    3. item 2.3
  3. item 3
[ublog](https://ublog.dev/blog)

<!-- embed -->
https://ublog.dev/blog

<!-- embed twitter -->
https://x.com/ubugeeei/status/1798343937570332916

ublog

ublog
ublog favicon https://ublog.dev/blog
ublog

Images

![ublog](https://ublog.dev/__og-image__/image/og.png)

ublog

Blockquotes

> This is a blockquote.

This is a blockquote.

Code Blocks

```ts [main.ts]
import { ref } from 'vue';

const count = ref(0);
function increment() {
  count.value++;
}
```
import { ref } from 'vue';

const count = ref(0);

function increment() {
  count.value++;
}

Code Inline

`const x = 1;`

const x = 1;

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4

Horizontal Rules

---

© 2024-PRESENT ubugeeei. All rights reserved.